Bugfix (remove semicolon) by Tim Tsahayev <xeonium@myrealbox.com>
This commit is contained in:
parent
15a5f462f2
commit
c28a5f2b7f
@ -191,7 +191,7 @@ int strschg_environ(char* s);
|
||||
int strschg_environ(std::string& s);
|
||||
|
||||
char* MapPath(char* map, bool reverse = false);
|
||||
inline char* ReMapPath(char* map) { return MapPath(map, true); };
|
||||
inline char* ReMapPath(char* map) { return MapPath(map, true); }
|
||||
|
||||
inline long lseekset(int fh, long offset) { return lseek(fh, offset, SEEK_SET); }
|
||||
inline long lseekset(int fh, long record, long recordsize) { return lseek(fh, record*recordsize, SEEK_SET); }
|
||||
|
Reference in New Issue
Block a user