svn commit: r282322 - head/include

Pedro F. Giffuni pfg at FreeBSD.org
Fri May 1 20:40:49 UTC 2015


Author: pfg
Date: Fri May  1 20:40:48 2015
New Revision: 282322
URL: https://svnweb.freebsd.org/changeset/base/282322

Log:
  No need for result_use_check attribute in reallocf(3).

Modified:
  head/include/stdlib.h

Modified: head/include/stdlib.h
==============================================================================
--- head/include/stdlib.h	Fri May  1 20:37:59 2015	(r282321)
+++ head/include/stdlib.h	Fri May  1 20:40:48 2015	(r282322)
@@ -305,7 +305,7 @@ int	 radixsort(const unsigned char **, i
 	    unsigned);
 void	*reallocarray(void *, size_t, size_t) __result_use_check __alloc_size(2)
 	    __alloc_size(3);
-void	*reallocf(void *, size_t) __result_use_check __alloc_size(2);
+void	*reallocf(void *, size_t) __alloc_size(2);
 int	 rpmatch(const char *);
 void	 setprogname(const char *);
 int	 sradixsort(const unsigned char **, int, const unsigned char *,


More information about the svn-src-all mailing list