diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-03 22:06:08 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-03 22:06:08 +0000 |
| commit | 06388d73b75d985ab10586bd116de7fac4ea2b8e (patch) | |
| tree | cff34181b921c9332df6e6243e6db03b04493543 /otk/util.cc | |
| parent | a9a5f0d7510be5dbf8ae1db99e6c1c01035503d9 (diff) | |
restart works
Diffstat (limited to 'otk/util.cc')
| -rw-r--r-- | otk/util.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/otk/util.cc b/otk/util.cc index 91d6f13a..ebca51d5 100644 --- a/otk/util.cc +++ b/otk/util.cc @@ -101,14 +101,12 @@ string itostring(long i) { return tmp; } -} - -#ifndef HAVE_BASENAME string basename (const string& path) { string::size_type slash = path.rfind('/'); if (slash == string::npos) return path; return path.substr(slash+1); } -#endif // HAVE_BASENAME + +} |
