Date: Sat, 31 Dec 2011 15:49:04 +0000 (UTC) From: Stefan Farfeleder <stefanf@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r229123 - stable/9/contrib/gcc/config/i386 Message-ID: <201112311549.pBVFn4pl071814@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: stefanf Date: Sat Dec 31 15:49:04 2011 New Revision: 229123 URL: http://svn.freebsd.org/changeset/base/229123 Log: MFC r226430: Adjust posix_memalign() prototype to match what we define in stdlib.h for C++ compilation. Modified: stable/9/contrib/gcc/config/i386/pmm_malloc.h Directory Properties: stable/9/contrib/gcc/ (props changed) Modified: stable/9/contrib/gcc/config/i386/pmm_malloc.h ============================================================================== --- stable/9/contrib/gcc/config/i386/pmm_malloc.h Sat Dec 31 15:46:36 2011 (r229122) +++ stable/9/contrib/gcc/config/i386/pmm_malloc.h Sat Dec 31 15:49:04 2011 (r229123) @@ -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 *
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112311549.pBVFn4pl071814>