summaryrefslogtreecommitdiffstats
path: root/xrdp/os_calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'xrdp/os_calls.c')
-rw-r--r--xrdp/os_calls.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/xrdp/os_calls.c b/xrdp/os_calls.c
index f6d8e48a..05e05dac 100644
--- a/xrdp/os_calls.c
+++ b/xrdp/os_calls.c
@@ -13,6 +13,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ xrdp: A Remote Desktop Protocol server.
Copyright (C) Jay Sorg 2004
generic operating system calls
@@ -522,3 +523,15 @@ int g_file_lock(int fd, int start, int len)
return 0;
return 1;
}
+
+/*****************************************************************************/
+int g_strlen(char* text)
+{
+ return strlen(text);
+}
+
+/*****************************************************************************/
+char* g_strcpy(char* dest, char* src)
+{
+ return strcpy(dest, src);
+}