diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2019-01-28 11:47:32 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2019-01-28 11:47:32 +0100 |
commit | c9473557656164985c638d1defcf03ff4cb0958e (patch) | |
tree | e0529b01ad362201398a03c929fdeb5fb5647351 /src | |
parent | 28d6e80db08f44a0a0c822a30d4b83e6312e5b85 (diff) |
Avoid warning for inline function
Diffstat (limited to 'src')
-rw-r--r-- | src/export/mystdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/mystdlib.h b/src/export/mystdlib.h index dd08137..938804b 100644 --- a/src/export/mystdlib.h +++ b/src/export/mystdlib.h | |||
@@ -29,5 +29,5 @@ void unmap_file ( MAP *pMap ); | |||
29 | 29 | ||
30 | /* Gets file size of open file | 30 | /* Gets file size of open file |
31 | returns != 0 in case of error */ | 31 | returns != 0 in case of error */ |
32 | inline int getfilesize( int fd, size_t *size ); | 32 | int getfilesize( int fd, size_t *size ); |
33 | 33 | ||