diff options
Diffstat (limited to 'mixutils/mixasm.c')
-rw-r--r-- | mixutils/mixasm.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mixutils/mixasm.c b/mixutils/mixasm.c index 64f0f3d..c8ece5b 100644 --- a/mixutils/mixasm.c +++ b/mixutils/mixasm.c @@ -23,7 +23,12 @@ #include <stdlib.h> #include <stdio.h> -#include <getopt.h> + +#ifdef HAVE_GETOPT_LONG +# include <getopt.h> +#else +# include <lib/getopt.h> +#endif /* HAVE_GETOPT_LONG */ #include "mixasm_comp.h" |