svn commit: r201525 - head/include

Ed Schouten ed at FreeBSD.org
Mon Jan 4 18:46:55 UTC 2010


Author: ed
Date: Mon Jan  4 18:46:54 2010
New Revision: 201525
URL: http://svn.freebsd.org/changeset/base/201525

Log:
  This should read #if __BSD_VISIBLE instead of #ifdef __BSD_VISIBLE.

Modified:
  head/include/strings.h

Modified: head/include/strings.h
==============================================================================
--- head/include/strings.h	Mon Jan  4 18:31:39 2010	(r201524)
+++ head/include/strings.h	Mon Jan  4 18:46:54 2010	(r201525)
@@ -46,7 +46,7 @@ void	 bzero(void *, size_t);					/* LEGA
 #if __XSI_VISIBLE
 int	 ffs(int) __pure2;
 #endif
-#ifdef __BSD_VISIBLE
+#if __BSD_VISIBLE
 int	 ffsl(long) __pure2;
 int	 ffsll(long long) __pure2;
 int	 fls(int) __pure2;


More information about the svn-src-all mailing list