Module Name: src
Committed By: joerg
Date: Fri Nov 29 23:00:49 UTC 2013
Modified Files:
src/lib/csu/common: crtbegin.c
Log Message:
Include crtbegin.h first to make it possible to build with the stricter
attribute consistency checks in clang.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/csu/common/crtbegin.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/csu/common/crtbegin.c
diff -u src/lib/csu/common/crtbegin.c:1.5 src/lib/csu/common/crtbegin.c:1.6
--- src/lib/csu/common/crtbegin.c:1.5 Mon Aug 26 14:20:53 2013
+++ src/lib/csu/common/crtbegin.c Fri Nov 29 23:00:48 2013
@@ -27,7 +27,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: crtbegin.c,v 1.5 2013/08/26 14:20:53 matt Exp $");
+__RCSID("$NetBSD: crtbegin.c,v 1.6 2013/11/29 23:00:48 joerg Exp $");
+
+#include "crtbegin.h"
typedef void (*fptr_t)(void);
@@ -131,5 +133,3 @@ __do_global_dtors_aux(void)
#endif
}
#endif /* !__ARM_EABI__ || SHARED */
-
-#include "crtbegin.h"