mirror of
https://codeberg.org/emilwilliams/chad_standard
synced 2024-11-22 03:54:18 -05:00
20 lines
265 B
C
20 lines
265 B
C
// @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);
|
|
}
|