-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate.h
25 lines (20 loc) · 785 Bytes
/
template.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* Copyright (c) Colorado School of Mines, .*/
/* All rights reserved. */
/*
* ???
*/
#ifndef @FILEGUARD@
# define @FILEGUARD@
# include <mach/mach.h>
# if defined (__MACH30__) && defined (__ppc__)
# include "machine/powerpc-apple-darwin--powerpc-apple-darwin/@file@"
# elif defined (__MACH30__) && defined (__i386__)
# include "machine/i386-apple-darwin--i386-apple-darwin/@file@"
# elif defined (__MACH30__) && defined (__x86_64__)
# include "machine/x86_64-apple-darwin--x86_64-apple-darwin/@file@"
# elif defined (__MACH30__) && defined (__arm__)
# include "machine/arm-apple-darwin--arm-apple-darwin/@file@"
# else
# error unknown architecture
# endif /* (__MACH30__) && (__ppc__ || __i386__ || __x86_64__ || __arm__) */
#endif /* @FILEGUARD@ */