1
0
mirror of https://codeberg.org/emilwilliams/chad_standard synced 2024-11-22 03:54:18 -05:00
chad_standard/reasoning/header-guard/main.c

20 lines
265 B
C
Raw Permalink Normal View History

2024-07-20 13:17:05 -04:00
// @BAKE gcc $@ -o $*.out $+
#ifndef CIRCULAR
# define CIRCULAR 0
#endif
#if CIRCULAR
// Define At End Header Guard
# include "a.h"
# include "b.h"
#else
// Define At Beginning Header Guard
# include "ac.h"
# include "bc.h"
#endif
signed main () {
return(0);
}