Commit 0e92ac36 authored by Steven Fuller's avatar Steven Fuller

Makefile: removed pedantic since gcc 3.2.2 is quite noisy

id_heads.h: added sys/types.h include
parent 930c3b32
...@@ -2,7 +2,7 @@ CC = gcc ...@@ -2,7 +2,7 @@ CC = gcc
#CC = gcc-3.0 #CC = gcc-3.0
#CC=/opt/intel/compiler60/ia32/bin/icc #CC=/opt/intel/compiler60/ia32/bin/icc
CFLAGS = -g -Wall -pedantic CFLAGS = -g -Wall
#CFLAGS = -g -O2 -Wall -pedantic #CFLAGS = -g -O2 -Wall -pedantic
#CFLAGS = -Wall -O6 -fomit-frame-pointer -ffast-math -funroll-loops -mpentiumpro -mcpu=pentiumpro -march=pentiumpro #CFLAGS = -Wall -O6 -fomit-frame-pointer -ffast-math -funroll-loops -mpentiumpro -mcpu=pentiumpro -march=pentiumpro
#CFLAGS = -g -Wall -pedantic -std=gnu99 #CFLAGS = -g -Wall -pedantic -std=gnu99
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/types.h>
#include <time.h> #include <time.h>
#include <inttypes.h> #include <inttypes.h>
#include <glob.h> #include <glob.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment