diff options
Diffstat (limited to 'common/os_calls.c')
-rw-r--r-- | common/os_calls.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/os_calls.c b/common/os_calls.c index 088424ec..5895449d 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -690,6 +690,13 @@ g_strdup(char* in) /*****************************************************************************/ int +g_strcmp(char* c1, char* c2) +{ + return strcmp(c1, c2); +} + +/*****************************************************************************/ +int g_strncmp(char* c1, char* c2, int len) { return strncmp(c1, c2, len); |