소스 검색

Fix include barrier names

Streetwalrus Einstein 10 년 전
부모
커밋
9015cf2e57
3개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 2 2
      include/graphics.h
  2. 2 2
      include/map.h
  3. 2 2
      include/timers.h

+ 2 - 2
include/graphics.h

@@ -1,5 +1,5 @@
-#ifndef SRC_GRAPHICS_H
-#define SRC_GRAPHICS_H
+#ifndef INCLUDE_GRAPHICS_H
+#define INCLUDE_GRAPHICS_H
 
 typedef struct Rect Rect_t;
 struct Rect

+ 2 - 2
include/map.h

@@ -1,5 +1,5 @@
-#ifndef SRC_MAP_H
-#define SRC_MAP_H
+#ifndef INCLUDE_MAP_H
+#define INCLUDE_MAP_H
 
 typedef struct Map Map_t;
 struct Map

+ 2 - 2
include/timers.h

@@ -1,5 +1,5 @@
-#ifndef SRC_TIMERS_H
-#define SRC_TIMERS_H
+#ifndef INCLUDE_TIMERS_H
+#define INCLUDE_TIMERS_H
 
 void timer_init(unsigned timer);
 void timer_restore(unsigned timer);