about summary refs log tree commit diff
path: root/linuxthreads/sysdeps/unix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-01-28 09:13:22 +0000
committerUlrich Drepper <drepper@redhat.com>2001-01-28 09:13:22 +0000
commitf9b9f291b7bab3368457d3e273584c25a1ccdc0a (patch)
tree831143baf2726d8bfe77042a83d806fdd796045d /linuxthreads/sysdeps/unix
parentddd1037e4dd9394cdb89d79cc6a81543cf75f552 (diff)
downloadglibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.tar.gz
glibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.tar.xz
glibc-f9b9f291b7bab3368457d3e273584c25a1ccdc0a.zip
Update.
	* conform/conformtest.pl: Define $mustprepend{"stdio.h"}.
	* libio/stdio.h: Always define __need___va_list.
Diffstat (limited to 'linuxthreads/sysdeps/unix')
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/hppa/bits/initspin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/hppa/bits/initspin.h b/linuxthreads/sysdeps/unix/sysv/linux/hppa/bits/initspin.h
index bb8d326348..c3829b12d6 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/hppa/bits/initspin.h
+++ b/linuxthreads/sysdeps/unix/sysv/linux/hppa/bits/initspin.h
@@ -1,5 +1,5 @@
 /* PA-RISC specific definitions for spinlock initializers.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -19,9 +19,9 @@
 
 /* Initial value of a spinlock.  PA-RISC only implements atomic load
    and clear so this must be non-zero. */
-#define LT_SPINLOCK_INIT 1
+#define __LT_SPINLOCK_INIT 1
 
 /* Macros for lock initializers, using the above definition. */
-#define LOCK_INITIALIZER { 0, LT_SPINLOCK_INIT }
-#define ALT_LOCK_INITIALIZER { 0, LT_SPINLOCK_INIT }
-#define ATOMIC_INITIALIZER { 0, LT_SPINLOCK_INIT }
+#define __LOCK_INITIALIZER { 0, __LT_SPINLOCK_INIT }
+#define __ALT_LOCK_INITIALIZER { 0, __LT_SPINLOCK_INIT }
+#define __ATOMIC_INITIALIZER { 0, __LT_SPINLOCK_INIT }