summaryrefslogtreecommitdiff
path: root/src/lib/evil/evil_stdlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/evil/evil_stdlib.c')
-rw-r--r--src/lib/evil/evil_stdlib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/evil/evil_stdlib.c b/src/lib/evil/evil_stdlib.c
index ea8f3356b7..f2edd03df9 100644
--- a/src/lib/evil/evil_stdlib.c
+++ b/src/lib/evil/evil_stdlib.c
@@ -22,7 +22,7 @@
*
*/
-int
+EVIL_API int
setenv(const char *name,
const char *value,
int overwrite)
@@ -65,7 +65,7 @@ setenv(const char *name,
return res;
}
-int
+EVIL_API int
unsetenv(const char *name)
{
return setenv(name, NULL, 1);
@@ -77,7 +77,7 @@ unsetenv(const char *name)
*
*/
-char *
+EVIL_API char *
realpath(const char *file_name, char *resolved_name)
{
char *retname = NULL; /* we will return this, if we fail */