diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-18 09:38:57 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-18 09:45:06 +0100 |
commit | c929d179530872cb5f393bc604089e36d66b1841 (patch) | |
tree | 1d5052f638113094731089f24e06066dc1c70ce4 /ipc | |
parent | e9e9c47f7f398a590deb4c2491488394d7247166 (diff) |
Add ifndefs
Finish up with the addition of ifndefs.
* device/buf.h: Add ifndef.
* device/dev_master.h: Likewise.
* include/device/tty_status.h: Likewise.
* include/mach/version.h: Likewise.
* ipc/ipc_machdep.h: Likewise.
Diffstat (limited to 'ipc')
-rwxr-xr-x | ipc/ipc_machdep.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipc/ipc_machdep.h b/ipc/ipc_machdep.h index e864c4b..c205ba4 100755 --- a/ipc/ipc_machdep.h +++ b/ipc/ipc_machdep.h @@ -24,6 +24,9 @@ * the rights to redistribute these changes. */ +#ifndef _IPC_IPC_MACHDEP_H_ +#define _IPC_IPC_MACHDEP_H_ + /* * At times, we need to know the size of a port in bits */ @@ -38,3 +41,4 @@ #define PORT_T_SIZE_IN_BITS 32 #endif +#endif /* _IPC_IPC_MACHDEP_H_ */ |