浏览代码

Add gnu89 std version (#33)

This enables compatibility with clang, which, unlike gcc, errors
(instead of warns) on depreciated C89 constructs like implicit int
unless c89/gnu89 is specifically selected.
Bolun Thompson 8 月之前
父节点
当前提交
64d9a37355
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-CFLAGS = -w -O
+CFLAGS = -std=gnu89 -w -O
 
 CLEANFILES =				\
 	lisp				\