Author: stefanf Date: Wed Jan 18 18:22:25 2012 New Revision: 230310 URL: http://svn.freebsd.org/changeset/base/230310
Log: MFC r226430: Adjust posix_memalign() prototype to match what we define in stdlib.h for C++ compilation. Modified: stable/8/contrib/gcc/config/i386/pmm_malloc.h Directory Properties: stable/8/contrib/gcc/ (props changed) Modified: stable/8/contrib/gcc/config/i386/pmm_malloc.h ============================================================================== --- stable/8/contrib/gcc/config/i386/pmm_malloc.h Wed Jan 18 15:59:23 2012 (r230309) +++ stable/8/contrib/gcc/config/i386/pmm_malloc.h Wed Jan 18 18:22:25 2012 (r230310) @@ -34,7 +34,7 @@ #ifndef __cplusplus extern int posix_memalign (void **, size_t, size_t); #else -extern "C" int posix_memalign (void **, size_t, size_t) throw (); +extern "C" int posix_memalign (void **, size_t, size_t); #endif static __inline void * _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "[email protected]"
