瀏覽代碼

Cleaned up imports

Dan Hintz - Arch 5 年之前
父節點
當前提交
a07a67d21c
共有 2 個文件被更改,包括 1 次插入2 次删除
  1. 1 1
      Makefile
  2. 0 1
      frames2img.c

+ 1 - 1
Makefile

@@ -1,7 +1,7 @@
 all: compile
 
 compile:
-	gcc frames2img.c -o frames2img -lpng -fopenmp
+	gcc frames2img.c -o frames2img -lpng -fopenmp -std=c99
 
 clean:
 	-rm frames2img

+ 0 - 1
frames2img.c

@@ -1,4 +1,3 @@
-#include <stdio.h>
 #include <stdlib.h>
 #include <stdint.h>
 #include <png.h>