about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-09-25 15:34:03 +0000
committerUlrich Drepper <drepper@redhat.com>2003-09-25 15:34:03 +0000
commit26721ed62e2cefdfe6f1d1603342822d6d2bf616 (patch)
treec37a138de929467f97f0a2c446517bce76cc34c4 /sysdeps
parent32868f8801a4800dd9f2b1597e7499ec76cf8dd1 (diff)
downloadglibc-26721ed62e2cefdfe6f1d1603342822d6d2bf616.tar.gz
glibc-26721ed62e2cefdfe6f1d1603342822d6d2bf616.tar.xz
glibc-26721ed62e2cefdfe6f1d1603342822d6d2bf616.zip
Update.
2003-09-25  Jakub Jelinek  <jakub@redhat.com>

	* misc/syslog.c: Include locale.h.
	(vsyslog): Add date always in C locale %h %e %T format.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/i386/fpu/fclrexcpt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/i386/fpu/fclrexcpt.c b/sysdeps/i386/fpu/fclrexcpt.c
index f7ccd3acf6..0873ad9cca 100644
--- a/sysdeps/i386/fpu/fclrexcpt.c
+++ b/sysdeps/i386/fpu/fclrexcpt.c
@@ -1,5 +1,5 @@
 /* Clear given exceptions in current floating-point environment.
-   Copyright (C) 1997,99,2000,01 Free Software Foundation, Inc.
+   Copyright (C) 1997,99,2000, 2001, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -48,10 +48,10 @@ __feclearexcept (int excepts)
 
       /* Get the current MXCSR.  */
       __asm__ ("stmxcsr %0" : "=m" (*&xnew_exc));
-      
+
       /* Clear the relevant bits.  */
       xnew_exc &= excepts ^ FE_ALL_EXCEPT;
-      
+
       /* Put the new data in effect.  */
       __asm__ ("ldmxcsr %0" : : "m" (*&xnew_exc));
     }