This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix typo in BP_SYM macro in linuxthreads libc-lock.h


minor patch to fix a spacing typo in the BP_SYM macro
-mike
2005-01-05  Mike Frysinger  <vapier@gentoo.org>

	* sysdeps/pthread/bits/libc-lock.h (BP_SYM): Fix space typo.

--- sysdeps/pthread/bits/libc-lock.h
+++ sysdeps/pthread/bits/libc-lock.h
@@ -1,5 +1,5 @@
 /* libc-internal interface for mutex locks.  LinuxThreads version.
-   Copyright (C) 1996,1997,1998,1999,2000,2001,2002,2003
+   Copyright (C) 1996,1997,1998,1999,2000,2001,2002,2003,2006
    	Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -351,7 +351,7 @@ extern int __pthread_atfork (void (*__pr
 #  if _LIBC
 #   include <bp-sym.h>
 #  else
-#   define BP_SYM (sym) sym
+#   define BP_SYM(sym) sym
 #  endif
 weak_extern (BP_SYM (__pthread_mutex_init))
 weak_extern (BP_SYM (__pthread_mutex_destroy))

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]