소스 검색

Merge pull request #48 from sajattack/stat

correction to include guard of stat
Jeremy Soller 7 년 전
부모
커밋
580dcd3c08
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/stat/cbindgen.toml
  2. 1 1
      tests/Makefile

+ 1 - 1
src/stat/cbindgen.toml

@@ -1,5 +1,5 @@
 sys_includes = ["sys/types.h"]
-include_guard = "_STAT_H"
+include_guard = "_SYS_STAT_H"
 language = "C"
 
 [enum]

+ 1 - 1
tests/Makefile

@@ -28,7 +28,7 @@ clean:
 
 run: $(BINS)
 	for bin in $(BINS); \
-	do
+	do \
 		echo "# $${bin} #"; \
 		"./$${bin}" test args; \
 	done