diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-19 02:12:57 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-12-19 02:12:57 +0000 |
| commit | ed40f6f85c9c07c3c1224ae20601082c0309a631 (patch) | |
| tree | 4082515a3e85107bd4a278b6613857b58da1770f /lib/driver | |
| parent | b3658b04216ed3974047b4c4ec885ee0161d9267 (diff) | |
| download | enigma2-ed40f6f85c9c07c3c1224ae20601082c0309a631.tar.gz enigma2-ed40f6f85c9c07c3c1224ae20601082c0309a631.zip | |
some python import cleanups
lesser swig overhead
Diffstat (limited to 'lib/driver')
| -rw-r--r-- | lib/driver/etimezone.cpp | 3 | ||||
| -rw-r--r-- | lib/driver/etimezone.h | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/driver/etimezone.cpp b/lib/driver/etimezone.cpp index 4accdba8..25879ce0 100644 --- a/lib/driver/etimezone.cpp +++ b/lib/driver/etimezone.cpp @@ -1,8 +1,7 @@ #include "etimezone.h" - #include <time.h> -etimezone::etimezone() +void e_tzset() { tzset(); } diff --git a/lib/driver/etimezone.h b/lib/driver/etimezone.h index 081bf139..7f1b2a80 100644 --- a/lib/driver/etimezone.h +++ b/lib/driver/etimezone.h @@ -1,11 +1,7 @@ #ifndef __etimezone_h #define __etimezone_h -class etimezone -{ -public: - etimezone(); -}; +void e_tzset(void); #endif |
