Add #include <unistd.h> to libio/oldfileops.c for write.

This commit is contained in:
Paul Pluzhnikov 2015-08-06 08:51:31 -07:00
parent 283c873654
commit 2ba30a182c
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2015-08-06 Paul Pluzhnikov <ppluzhnikov@google.com>
* libio/oldfileops.c: Include unistd.h.
2015-08-06 Mike Frysinger <vapier@gentoo.org>
* stdlib/isomac.c: Include ctype.h.

View File

@ -41,6 +41,7 @@
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#ifndef errno
extern int errno;
#endif