diff options
author | Linus Torvals <torvalds@osdl.org> | 2006-09-20 12:07:09 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2006-09-20 12:07:09 -0700 |
commit | daade50ca271d1cdf236bbe84afade85d4111ac9 (patch) | |
tree | 3c6a1c1f8702fe6fb224c44ba0ac4fed1fa2548d /src/i830_bios.c | |
parent | e3f4caf40708478ef327b029d0a75944c51ea905 (diff) |
Add standard C headers to fix build on some systems after xf86_ansic.h removal.
This appears to have been hidden for others by header pollution in X Server
headers.
Diffstat (limited to 'src/i830_bios.c')
-rw-r--r-- | src/i830_bios.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i830_bios.c b/src/i830_bios.c index 556f57b3..14e354ed 100644 --- a/src/i830_bios.c +++ b/src/i830_bios.c @@ -29,6 +29,9 @@ #undef VERSION /* XXX edid.h has a VERSION too */ #endif +#include <stdio.h> +#include <string.h> + #define _PARSE_EDID_ #include "xf86.h" #include "i830.h" |