diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-03 20:06:54 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-03 20:06:54 -0800 |
commit | 6d3d82bb13b8a7377e1bc8e1a65a80a2e013af4a (patch) | |
tree | bfd2ee8de2eecff97e396965e5c4f79b255b3e2f /system/include/dlfcn.h | |
parent | 42a910da1fab3bb5d793e5ca3d9ede9244781255 (diff) | |
parent | defb31b122dc0458ab2c57e649b43aee4587016e (diff) |
Merge pull request #830 from waywardmonkeys/dlfcn-include-guards
Missing include guards.
Diffstat (limited to 'system/include/dlfcn.h')
-rw-r--r-- | system/include/dlfcn.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system/include/dlfcn.h b/system/include/dlfcn.h index 3a4edd00..7986c12d 100644 --- a/system/include/dlfcn.h +++ b/system/include/dlfcn.h @@ -1,3 +1,5 @@ +#ifndef _DLFCN_H_INCLUDED +#define _DLFCN_H_INCLUDED #ifdef __cplusplus extern "C" { @@ -26,3 +28,4 @@ int dladdr(void *addr, Dl_info *info); } #endif +#endif |