diff options
-rw-r--r-- | malloc.c | 1 | ||||
-rw-r--r-- | perl.h | 15 |
2 files changed, 8 insertions, 8 deletions
@@ -1867,6 +1867,7 @@ Perl_get_mstats(pTHX_ perl_mstats_t *buf, int buflen, int level) } } #endif /* defined DEBUGGING_MSTATS */ + return 0; /* XXX unused */ } /* * mstats - print out statistics about malloc @@ -3170,20 +3170,19 @@ typedef struct am_table_short AMTS; #ifdef I_FCNTL # include <fcntl.h> -#else -# ifndef O_RDONLY -/* Assume UNIX defaults */ -# define O_RDONLY 0000 -# define O_WRONLY 0001 -# define O_RDWR 0002 -# define O_CREAT 0100 -# endif #endif #ifdef I_SYS_FILE # include <sys/file.h> #endif +#ifndef O_RDONLY +/* Assume UNIX defaults */ +# define O_RDONLY 0000 +# define O_WRONLY 0001 +# define O_RDWR 0002 +# define O_CREAT 0100 +#endif #ifdef IAMSUID |