diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-04 07:39:23 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-02-04 07:39:23 +0700 |
commit | c84352a5633f697cb8f72c90db4faa9500280be7 (patch) | |
tree | 02fb7413b0272d9e79c56e40d8c57fac976624db /system | |
parent | 0e2d5b6ed1e97e3c8ab07b53d9e5534c10f294af (diff) |
dlfcn.h: Missing include guards.
Diffstat (limited to 'system')
-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 |