summaryrefslogtreecommitdiffstats
path: root/common/os_calls.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-12-10 02:26:26 +0000
committerjsorg71 <jsorg71>2005-12-10 02:26:26 +0000
commitc46c748148bb8e1d6b48bb2740adf6b2d1a11b1b (patch)
treefbfdf72a7226279c8613d4763bdfff13ebcb8c0c /common/os_calls.c
parentf5151bfc8d63a6d71c68460a03138164f376886d (diff)
downloadxrdp-proprietary-c46c748148bb8e1d6b48bb2740adf6b2d1a11b1b.tar.gz
xrdp-proprietary-c46c748148bb8e1d6b48bb2740adf6b2d1a11b1b.zip
added g_time1 function
Diffstat (limited to 'common/os_calls.c')
-rw-r--r--common/os_calls.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/os_calls.c b/common/os_calls.c
index 45b60bd7..088424ec 100644
--- a/common/os_calls.c
+++ b/common/os_calls.c
@@ -42,6 +42,7 @@
#include <signal.h>
#include <fcntl.h>
#include <pwd.h>
+#include <time.h>
#endif
#include <stdlib.h>
@@ -1000,3 +1001,16 @@ g_getuser_info(char* username, int* gid, int* uid, char* shell, char* dir,
#endif
return 0;
}
+
+/*****************************************************************************/
+/* returns the time since the Epoch (00:00:00 UTC, January 1, 1970),
+ measured in seconds. */
+int
+g_time1(void)
+{
+#if defined(_WIN32)
+ return 0;
+#else
+ return time(0);
+#endif
+}