From: Andy W. <abw...@gm...> - 2016-10-15 17:43:14
|
I had to make a change after the fseeko stuff was moved from file.c to nasmlib.h for off_t to be defined: diff --git a/include/nasmlib.h b/include/nasmlib.h index b1c490c..ab47f67 100644 --- a/include/nasmlib.h +++ b/include/nasmlib.h @@ -45,6 +45,9 @@ #ifdef HAVE_STRINGS_H # include <strings.h> #endif +#ifdef HAVE_IO_H +# include <io.h> +#endif /* * tolower table -- avoids a function call on some platforms. |