fxlibc/src/stdio/tmpnam.c

8 lines
76 B
C

#include <stdio.h>
char *tmpnam(char *s)
{
(void)s;
return NULL;
}