Date: Mon, 4 Jan 2010 18:46:55 +0000 (UTC) From: Ed Schouten <ed@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r201525 - head/include Message-ID: <201001041846.o04IktvK048098@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001041846.o04IktvK048098>