Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Duncan White
C-datadec
Commits
91725f69
Commit
91725f69
authored
May 24, 2007
by
dcw
Browse files
added stdlib and string includes to keep stricter compilers happy..
parent
49f7a7c3
Changes
5
Hide whitespace changes
Inline
Side-by-side
datadec.c
View file @
91725f69
...
...
@@ -18,7 +18,9 @@
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "struct.h"
#include "lexer.h"
#include "parser.h"
...
...
decs.c
View file @
91725f69
#include <stdio.h>
#include <stdlib.h>
#include "struct.h"
#include "decs.h"
...
...
lexer.c
View file @
91725f69
...
...
@@ -16,7 +16,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "struct.h"
#include "lexer.h"
...
...
optimize.c
View file @
91725f69
...
...
@@ -2,7 +2,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "struct.h"
#include "optimize.h"
...
...
struct.c
View file @
91725f69
...
...
@@ -16,7 +16,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include "struct.h"
#define Puts(s) fputs(s,stdout)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment