diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-02-08 10:05:09 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-02-08 10:05:09 +0000 |
commit | d585b66fa4d11059948f466c9080a6826932358d (patch) | |
tree | 8b06692920852c297635b46a7d616c3066f95fac /libio | |
parent | e7cbcee4982d8caa809a91c9cfef5fda67445f0a (diff) | |
download | glibc-d585b66fa4d11059948f466c9080a6826932358d.tar glibc-d585b66fa4d11059948f466c9080a6826932358d.tar.gz glibc-d585b66fa4d11059948f466c9080a6826932358d.tar.bz2 glibc-d585b66fa4d11059948f466c9080a6826932358d.zip |
Updated to fedora-glibc-20050208T0948cvs/fedora-glibc-2_3_4-6
Diffstat (limited to 'libio')
-rw-r--r-- | libio/fmemopen.c | 1 | ||||
-rw-r--r-- | libio/iofopncook.c | 2 | ||||
-rw-r--r-- | libio/stdio.h | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/libio/fmemopen.c b/libio/fmemopen.c index 51e849e846..7c8769a130 100644 --- a/libio/fmemopen.c +++ b/libio/fmemopen.c @@ -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" diff --git a/libio/iofopncook.c b/libio/iofopncook.c index eba3d435dc..9c5503d1f2 100644 --- a/libio/iofopncook.c +++ b/libio/iofopncook.c @@ -37,6 +37,8 @@ static _IO_ssize_t _IO_cookie_read (register _IO_FILE* fp, void* buf, static _IO_ssize_t _IO_cookie_write (register _IO_FILE* fp, const void* buf, _IO_ssize_t size); static _IO_off64_t _IO_cookie_seek (_IO_FILE *fp, _IO_off64_t offset, int dir); +static _IO_off64_t _IO_cookie_seekoff (_IO_FILE *fp, _IO_off64_t offset, + int dir, int mode); static int _IO_cookie_close (_IO_FILE* fp); static _IO_ssize_t diff --git a/libio/stdio.h b/libio/stdio.h index 9b529dd839..ac42b3e2ac 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -151,9 +151,9 @@ extern struct _IO_FILE *stderr; /* Standard error output stream. */ __BEGIN_NAMESPACE_STD /* Remove file FILENAME. */ -extern int remove (__const char *__filename) __THROW __wur; +extern int remove (__const char *__filename) __THROW; /* Rename file OLD to NEW. */ -extern int rename (__const char *__old, __const char *__new) __THROW __wur; +extern int rename (__const char *__old, __const char *__new) __THROW; __END_NAMESPACE_STD |