summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-07-21 01:34:17 +0000
committerMiles Bader <miles@gnu.org>1996-07-21 01:34:17 +0000
commit5764121c46f961be40559886031cbc044544a987 (patch)
tree571c2a70178e11cb8a51a6f63fb4e0db61f7d68f
parent0e33ca7b052cceaa06c30fcf440198911ff6400f (diff)
* sysdeps/mach/libc-lock.h (__libc_lock_define): Backslashify
continuation line.
-rw-r--r--ChangeLog3
-rw-r--r--sysdeps/mach/libc-lock.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 64825538ca..9e74775b76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@ Sat Jul 20 13:28:52 1996 Miles Bader <miles@gnu.ai.mit.edu>
If there is only a single descriptor, just use its reply port for
everything and don't bother creating the port set.
+ * sysdeps/mach/libc-lock.h (__libc_lock_define): Backslashify
+ continuation line.
+
Sat Jul 20 07:15:33 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* crypt/Makefile, crypt/nocrypt.c: Removed. It is illegal to export
diff --git a/sysdeps/mach/libc-lock.h b/sysdeps/mach/libc-lock.h
index 0639fc6b22..2c39592717 100644
--- a/sysdeps/mach/libc-lock.h
+++ b/sysdeps/mach/libc-lock.h
@@ -34,7 +34,7 @@ typedef struct __libc_lock_opaque__ __libc_lock_t;
definitions, the lock element must come last, because its storage size
will not be known outside of libc. (Or you can use a pointer to the
lock structure; i.e. NAME begins with a `*'.) */
-#define __libc_lock_define(CLASS,NAME)
+#define __libc_lock_define(CLASS,NAME) \
CLASS __libc_lock_t NAME;
/* Define an initialized lock variable NAME with storage class CLASS. */