svn commit: r190409 - head/include

David Schultz das at FreeBSD.org
Wed Mar 25 01:07:55 PDT 2009


Author: das
Date: Wed Mar 25 08:07:52 2009
New Revision: 190409
URL: http://svn.freebsd.org/changeset/base/190409

Log:
  Make programs that define a macro called `dprintf' more likely to work.

Modified:
  head/include/stdio.h

Modified: head/include/stdio.h
==============================================================================
--- head/include/stdio.h	Wed Mar 25 07:26:24 2009	(r190408)
+++ head/include/stdio.h	Wed Mar 25 08:07:52 2009	(r190409)
@@ -381,7 +381,7 @@ ssize_t	 getline(char ** __restrict, siz
 #endif
 
 #ifdef _WITH_DPRINTF
-int	 dprintf(int, const char * __restrict, ...);
+int	 (dprintf)(int, const char * __restrict, ...);
 #endif
 
 #endif /* __BSD_VISIBLE || __POSIX_VISIBLE >= 200809 */


More information about the svn-src-head mailing list