summaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-11-23 17:22:17 +0000
committerUlrich Drepper <drepper@redhat.com>1999-11-23 17:22:17 +0000
commitc19559b0bcec2afce4952ea4bbc8724a7a99bd6a (patch)
treedbd7c1ce22f2e3267841d3f7a41745d6edbff5d5 /include/wchar.h
parent4d8d74583abec02470a87ac1481f7dc3b2fa33b5 (diff)
Update.
* include/aio.h: Remove __THROW from internal interfaces. __THROW is only need in external header files that might be compiled by a C++ compiler. * include/alloca.h: Likewise. * include/db.h: Likewise. * include/dirent.h: Likewise. * include/execinfo.h: Likewise. * include/fpu_control.h: Likewise. * include/glob.h: Likewise. * include/grp.h: Likewise. * include/libintl.h: Likewise. * include/math.h: Likewise. * include/math.h: Likewise. * include/mntent.h: Likewise. * include/mntent.h: Likewise. * include/netdb.h: Likewise. * include/pwd.h: Likewise. * include/sched.h: Likewise. * include/shadow.h: Likewise. * include/stdlib.h: Likewise. * include/sys/file.h: Likewise. * include/sys/gmon.h: Likewise. * include/sys/ioctl.h: Likewise. * include/sys/socket.h: Likewise. * include/sys/stat.h: Likewise. * include/sys/sysinfo.h: Likewise. * include/sys/time.h: Likewise. * include/sys/times.h: Likewise. * include/sys/uio.h: Likewise. * include/sys/wait.h: Likewise. * include/termios.h: Likewise. * include/time.h: Likewise. * include/ulimit.h: Likewise. * include/utmp.h: Likewise. * include/wchar.h: Likewise. 1999-11-22 Andreas Jaeger <aj@suse.de> * sunrpc/rpc_clntout.c (printbody): Fix -CLMNab output. Patch by Jerry Perkins <jrperkins@iname.com>, closes PR libc/1456+1457. 1999-11-22 Jakub Jelinek <jakub@redhat.com> * sysdeps/generic/siglist.h: Avoid declaring the same field twice if SIGPWR is defined to SIGLOST. * sysdeps/sparc/sparc32/memcpy.S: bcopy takes size_t argument, not signed, so we should not special case it for negative args. * sysdeps/sparc/sparc32/sparcv9/memmove.c: Don't use generic memmove, use the one provided in memcpy.S. * sysdeps/sparc/sparc64/memcpy.S: bcopy should handle overlapping copies like memmove, while the previous version worked like memcpy. Implement optimized assembly memmove. * sysdeps/sparc/sparc64/memmove.c: New file. 1999-11-23 Ulrich Drepper <drepper@cygnus.com> * po/cs.po: Update from translators. 1999-11-23 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 0f70ced8c4..cdc4e757c3 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -3,45 +3,45 @@
# ifdef _WCHAR_H
/* Now define the internal interfaces. */
-extern int __wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2) __THROW;
+extern int __wcscasecmp (__const wchar_t *__s1, __const wchar_t *__s2);
extern int __wcsncasecmp (__const wchar_t *__s1, __const wchar_t *__s2,
- size_t __n) __THROW;
-extern size_t __wcsnlen (__const wchar_t *__s, size_t __maxlen) __THROW;
-extern wint_t __btowc (int __c) __THROW;
-extern int __mbsinit (__const __mbstate_t *__ps) __THROW;
+ size_t __n);
+extern size_t __wcsnlen (__const wchar_t *__s, size_t __maxlen);
+extern wint_t __btowc (int __c);
+extern int __mbsinit (__const __mbstate_t *__ps);
extern size_t __mbrtowc (wchar_t *__restrict __pwc,
__const char *__restrict __s, size_t __n,
- __mbstate_t *__restrict __p) __THROW;
+ __mbstate_t *__restrict __p);
extern size_t __wcrtomb (char *__restrict __s, wchar_t __wc,
- __mbstate_t *__restrict __ps) __THROW;
+ __mbstate_t *__restrict __ps);
extern size_t __mbsrtowcs (wchar_t *__restrict __dst,
__const char **__restrict __src,
- size_t __len, __mbstate_t *__restrict __ps) __THROW;
+ size_t __len, __mbstate_t *__restrict __ps);
extern size_t __wcsrtombs (char *__restrict __dst,
__const wchar_t **__restrict __src,
- size_t __len, __mbstate_t *__restrict __ps) __THROW;
+ size_t __len, __mbstate_t *__restrict __ps);
extern size_t __mbsnrtowcs (wchar_t *__restrict __dst,
__const char **__restrict __src, size_t __nmc,
- size_t __len, __mbstate_t *__restrict __ps) __THROW;
+ size_t __len, __mbstate_t *__restrict __ps);
extern size_t __wcsnrtombs (char *__restrict __dst,
__const wchar_t **__restrict __src,
size_t __nwc, size_t __len,
- __mbstate_t *__restrict __ps) __THROW;
-extern wchar_t *__wcpcpy (wchar_t *__dest, __const wchar_t *__src) __THROW;
+ __mbstate_t *__restrict __ps);
+extern wchar_t *__wcpcpy (wchar_t *__dest, __const wchar_t *__src);
extern wchar_t *__wcpncpy (wchar_t *__dest, __const wchar_t *__src,
- size_t __n) __THROW;
+ size_t __n);
extern wchar_t *__wmemcpy (wchar_t *__s1, __const wchar_t *s2,
- size_t __n) __THROW;
+ size_t __n);
extern wchar_t *__wmempcpy (wchar_t *__restrict __s1,
__const wchar_t *__restrict __s2,
- size_t __n) __THROW;
+ size_t __n);
extern wchar_t *__wmemmove (wchar_t *__s1, __const wchar_t *__s2,
- size_t __n) __THROW;
-extern wchar_t *__wcschrnul (__const wchar_t *__s, wchar_t __wc) __THROW;
+ size_t __n);
+extern wchar_t *__wcschrnul (__const wchar_t *__s, wchar_t __wc);
extern int __vfwscanf (FILE *__restrict __s,
__const wchar_t *__restrict __format,
- __gnuc_va_list __arg) __THROW
- /* __attribute__ ((__format__ (__wscanf__, 2, 0) __THROW) */;
+ __gnuc_va_list __arg)
+ /* __attribute__ ((__format__ (__wscanf__, 2, 0)) */;
# endif
#endif