heimdal:lib/wind: include <stdlib.h> at the end

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
This commit is contained in:
Stefan Metzmacher
2012-06-17 14:18:49 +02:00
committed by Nicolas Williams
parent 2596cfe324
commit 1ae5df045e
3 changed files with 3 additions and 3 deletions

View 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>
''')

View 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[] = {
''')

View 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[] = {
''')