diff options
author | Martin Szulecki | 2013-02-27 15:02:20 +0100 |
---|---|---|
committer | Martin Szulecki | 2013-02-27 15:02:20 +0100 |
commit | 82429cd891bb26f2c5b77ff90e3e62eb60434bc6 (patch) | |
tree | 153028634b09716cb8606f224cf6ee89dcb3fb69 /src/afc.h | |
parent | d5f91e4cfbe0ae7f9c909ab1061384bff75cd4c4 (diff) | |
download | libimobiledevice-82429cd891bb26f2c5b77ff90e3e62eb60434bc6.tar.gz libimobiledevice-82429cd891bb26f2c5b77ff90e3e62eb60434bc6.tar.bz2 |
Make all "include guards" for all headers consistent
Diffstat (limited to 'src/afc.h')
-rw-r--r-- | src/afc.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef __AFC_H +#define __AFC_H + #include <stdint.h> #ifdef WIN32 #include <windows.h> @@ -99,3 +102,4 @@ enum { AFC_OP_SET_FILE_TIME = 0x0000001E /* set st_mtime */ }; +#endif |