Bugfix (remove semicolon) by Tim Tsahayev <xeonium@myrealbox.com>

This commit is contained in:
Stas Degteff 2005-05-11 10:58:51 +00:00
parent 15a5f462f2
commit c28a5f2b7f

View File

@ -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); }