diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-29 03:12:22 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:36 +0200 |
| commit | 44d4752e83d807cde6aff8260b5aa2acdf77778d (patch) | |
| tree | 54acfd0f469401a9c7807be96defc02450ca50a4 /src/fixer.h | |
| parent | 3b458d258326f7103cddb922de90d311745a1038 (diff) | |
Added extern "C" where needed.
Diffstat (limited to 'src/fixer.h')
| -rw-r--r-- | src/fixer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fixer.h b/src/fixer.h index 173b82a..3913c05 100644 --- a/src/fixer.h +++ b/src/fixer.h @@ -1,6 +1,10 @@ #ifndef __FIXER_H__ #define __FIXER_H__ +#ifdef __cplusplus +extern "C" { +#endif + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -112,4 +116,8 @@ int GetFileAttributesA(const char *file); int SetFilePointer(HANDLE file, int x, int y, int z); int SetEndOfFile(HANDLE file); +#ifdef __cplusplus +}; +#endif + #endif |
