heimdal:lib/wind: include <stdlib.h> at the end
authorStefan Metzmacher <metze@samba.org>
Sun, 17 Jun 2012 12:18:49 +0000 (14:18 +0200)
committerStefan Metzmacher <metze@samba.org>
Sun, 17 Jun 2012 14:16:23 +0000 (16:16 +0200)
This makes sure config.h gets includes first.

This should fix the build on AIX.

metze

Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Sun Jun 17 16:16:24 CEST 2012 on sn-devel-104

source4/heimdal/lib/wind/gen-bidi.py
source4/heimdal/lib/wind/gen-combining.py
source4/heimdal/lib/wind/gen-normalize.py

index 70abb1ed764338149a8a3c04a86c982c39850816..21839c2550b2f0c52d36b944fc0a997990290e4d 100644 (file)
@@ -70,8 +70,8 @@ extern const size_t _wind_l_table_size;
 
 bidi_c.file.write(
 '''
-#include <stdlib.h>
 #include "bidi_table.h"
+#include <stdlib.h>
 
 ''')
 
index cc692fd2a61a3bc6a49f6c5bd5c6771ef8b5b6fb..86cbc6d50f0c068586ec34d4e83a6dba89d561d9 100644 (file)
@@ -73,8 +73,8 @@ extern const size_t _wind_combining_table_size;
 
 combining_c.file.write(
 '''
-#include <stdlib.h>
 #include "combining_table.h"
+#include <stdlib.h>
 
 const struct translation _wind_combining_table[] = {
 ''')
index c076088fd0cd8ae2132c5bc814a72c15373656e7..9b3553c46d0d09d81c950a93e4dd3b953027534d 100644 (file)
@@ -97,8 +97,8 @@ extern const unsigned short _wind_canon_next_table[];
 
 normalize_c.file.write(
 '''
-#include <stdlib.h>
 #include "normalize_table.h"
+#include <stdlib.h>
 
 const struct translation _wind_normalize_table[] = {
 ''')