Rationalised use of #includes to be more standards-compliant.

This commit is contained in:
dtrg 2006-07-18 18:05:47 +00:00
parent 57084134e5
commit 4cb0ab8a63
2 changed files with 6 additions and 0 deletions

View file

@ -5,6 +5,9 @@
/* $Id$ */ /* $Id$ */
/* IDENTIFIER FIDDLING & SYMBOL TABLE HANDLING */ /* IDENTIFIER FIDDLING & SYMBOL TABLE HANDLING */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "lint.h" #include "lint.h"
#include <em_reg.h> #include <em_reg.h>
#include "nofloat.h" #include "nofloat.h"

View file

@ -4,6 +4,9 @@
*/ */
/* $Id$ */ /* $Id$ */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "inputtype.h" #include "inputtype.h"
#include "file_info.h" #include "file_info.h"
#include "input.h" #include "input.h"