Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-01-17 07:29:54 +0300
committerChristopher Faylor <me@cgf.cx>2004-01-17 07:29:54 +0300
commit85b6d63ba4230613ce5f602cc76c0a6460c4676a (patch)
tree35c3f9e2e04f8ec1440822e3eb2a356d56439dbe
parent46ee54222e0b68f87d541dd26026ec9bc649afed (diff)
* libc/stdio/vfprintf.c: Add sys/lock.h include.
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/stdio/vfprintf.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 38a26e02f..5e57a37a8 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-16 Christopher Faylor <cgf@redhat.com>
+
+ * libc/stdio/vfprintf.c: Add sys/lock.h include.
+
2004-01-16 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdio/findfp.c (__sfp): Remove unnecessary memset.
diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c
index 5fe443138..96fa4ba2e 100644
--- a/newlib/libc/stdio/vfprintf.c
+++ b/newlib/libc/stdio/vfprintf.c
@@ -187,6 +187,7 @@ static char *rcsid = "$Id$";
#include <reent.h>
#include <wchar.h>
#include <string.h>
+#include <sys/lock.h>
#ifdef _HAVE_STDC
#include <stdarg.h>