Browse Source

fix missing declaration of strcpy in implementation of tmpnam

master
Rich Felker 12 years ago
parent
commit
d677d3fe83
  1. 1
      src/stdio/tmpnam.c

1
src/stdio/tmpnam.c

@ -2,6 +2,7 @@
#include <fcntl.h>
#include <errno.h>
#include <sys/stat.h>
#include <string.h>
#include "syscall.h"
#define MAXTRIES 100

Loading…
Cancel
Save