diff options
Diffstat (limited to 'libc/stdlib/mkstemp.c')
| -rw-r--r-- | libc/stdlib/mkstemp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/libc/stdlib/mkstemp.c b/libc/stdlib/mkstemp.c index d65ada4f7..de3c682b2 100644 --- a/libc/stdlib/mkstemp.c +++ b/libc/stdlib/mkstemp.c @@ -1,4 +1,4 @@ - +#include <string.h>  #include <features.h>  #include <unistd.h>  #include <fcntl.h> @@ -7,7 +7,7 @@ int mkstemp(template)  char * template;  {  	int i; -	int num; /* UNINITIALIZED */ +	int num __attribute__ ((unused)); /* UNINITIALIZED */  	int n2;  	int l = strlen(template); | 
