diff options
author | Roland McGrath <roland@gnu.org> | 2005-03-01 20:57:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-03-01 20:57:17 +0000 |
commit | 5d4d19f6edb3201f1a3c43de6a66e45c723afa92 (patch) | |
tree | d926d10b795e1e64d74e593deedf23d1caa4de1b /libio/fmemopen.c | |
parent | 96f6b94b573ac6b6e822eb601c358bba66bdebb6 (diff) | |
download | glibc-5d4d19f6edb3201f1a3c43de6a66e45c723afa92.tar glibc-5d4d19f6edb3201f1a3c43de6a66e45c723afa92.tar.gz glibc-5d4d19f6edb3201f1a3c43de6a66e45c723afa92.tar.bz2 glibc-5d4d19f6edb3201f1a3c43de6a66e45c723afa92.zip |
2005-02-02 Alfred M. Szmidt <ams@gnu.org>
[BZ #765]
* libio/fmemopen.c: Include <stdint.h>.
Diffstat (limited to 'libio/fmemopen.c')
-rw-r--r-- | libio/fmemopen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libio/fmemopen.c b/libio/fmemopen.c index c22cba1ec4..7c8769a130 100644 --- a/libio/fmemopen.c +++ b/libio/fmemopen.c @@ -1,5 +1,5 @@ /* Fmemopen implementation. - Copyright (C) 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 2000, 2002, 2005 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Hanno Mueller, kontakt@hanno.de, 2000. @@ -71,6 +71,7 @@ #include <libio.h> #include <stdio.h> #include <stdlib.h> +#include <stdint.h> #include <string.h> #include <sys/types.h> #include "libioP.h" |