diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-13 07:33:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-13 07:33:12 +0000 |
commit | ab95290c787fb6e22bf03f23059b97559e1ad7d7 (patch) | |
tree | 892cff92b6d49d7c99a6d99c077882642fe6eda7 /iconv | |
parent | a5c88158b6170149fa1b98e1704ed9dcab457314 (diff) | |
download | glibc-ab95290c787fb6e22bf03f23059b97559e1ad7d7.tar.gz glibc-ab95290c787fb6e22bf03f23059b97559e1ad7d7.tar.xz glibc-ab95290c787fb6e22bf03f23059b97559e1ad7d7.zip |
Update.
2000-06-13 Ulrich Drepper <drepper@redhat.com> * misc/sys/cdefs.h: Define __bounded and __unbounded if __BOUNDED_POINTERS__ is not defined. 2000-06-07 Greg McGary <greg@mcgary.org> * sysdeps/generic/bp-sym.h: New file. * sysdeps/generic/bp-start.h: New file. * sysdeps/i386/elf/start.S: Designate BP symbols. * sysdeps/generic/libc-start.c: Wrap bounds around argv & envp and each of their string members. 2000-06-07 Greg McGary <greg@mcgary.org> * sysdeps/unix/make-syscalls.sh: Add comments to output that aid debugging & comprehension. Map simple syscall signatures to number of args. Generate BP syscall thunk definitions. * sysdeps/generic/bp-thunks.h: New file. * sysdeps/unix/syscalls.list: Replace arg-count with simple return+arg signature. * sysdeps/unix/common/syscalls.list: Likewise. * sysdeps/unix/inet/syscalls.list: Likewise. * sysdeps/unix/mman/syscalls.list: Likewise. * sysdeps/unix/sysv/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/syscalls.list: Likewise. * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise. 2000-06-07 Greg McGary <greg@mcgary.org> * Makeconfig (CPPFLAGS-.ob): pass -fbounded-pointers for all files *.[cS]. (CFLAGS-.ob): Don't optimize sibling calls. (bppfx): New variable. * Makerules (elide-bp-thunks): New variable. (elide-routines.*): Elide BP-* files for all but *.ob. (sources): Include bp-thunks. * iconv/gconv_simple.c: Remove unnecessary prototype. * iconv/gconv_trans.c: Pretty print.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/gconv_simple.c | 7 | ||||
-rw-r--r-- | iconv/gconv_trans.c | 6 |
2 files changed, 3 insertions, 10 deletions
diff --git a/iconv/gconv_simple.c b/iconv/gconv_simple.c index 188fc04c0e..5033f3ef83 100644 --- a/iconv/gconv_simple.c +++ b/iconv/gconv_simple.c @@ -789,13 +789,6 @@ ucs4le_internal_loop_single (struct __gconv_step *step, #define FUNCTION_NAME __gconv_transform_internal_ascii #define ONE_DIRECTION 1 -extern int FUNCTION_NAME (struct __gconv_step *step, - struct __gconv_step_data *data, - const unsigned char **inptrp, - const unsigned char *inend, - unsigned char *outbufstart, size_t *irreversible, - int do_flush, int consume_incomplete); - #define MIN_NEEDED_INPUT MIN_NEEDED_FROM #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO #define LOOPFCT FROM_LOOP diff --git a/iconv/gconv_trans.c b/iconv/gconv_trans.c index 11c542e744..56c3ff6be6 100644 --- a/iconv/gconv_trans.c +++ b/iconv/gconv_trans.c @@ -27,9 +27,9 @@ int gconv_transliterate (struct __gconv_step *step, struct __gconv_step_data *step_data, - __const unsigned char *inbufstart, - __const unsigned char **inbufp, - __const unsigned char *inbufend, + const unsigned char *inbufstart, + const unsigned char **inbufp, + const unsigned char *inbufend, unsigned char *outbufstart, unsigned char **outbufp, unsigned char *outbufend, size_t *irreversible) |