mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
Be a bit friendlier to those compiling without HAVE_CONFIG_H by always
including the "standard C" headers. svn path=/trunk/yasm/; revision=965
This commit is contained in:
parent
dd4ae0b63a
commit
f7be0f0fd7
1 changed files with 4 additions and 6 deletions
10
util.h
10
util.h
|
|
@ -46,12 +46,10 @@
|
|||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifdef STDC_HEADERS
|
||||
# include <stddef.h>
|
||||
# include <stdlib.h>
|
||||
# include <string.h>
|
||||
# include <assert.h>
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <libyasm/coretype.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue