summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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. */