1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00
mpv/osdep/setenv.c
diego b2c4df0543 Move #ifdef directives around complete files into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21873 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-01-10 19:07:42 +00:00

27 lines
457 B
C

/* setenv implementation for systems lacking it. */
#include "config.h"
#include <stdlib.h>
#include <string.h>
#ifndef MP_DEBUG
#define NDEBUG
#endif
#include <assert.h>
int setenv(const char *name, const char *val, int overwrite)
{
int len = strlen(name) + strlen(val) + 2;
char *env = malloc(len);
if (!env) { return -1; }
assert(overwrite != 0);
strcpy(env, name);
strcat(env, "=");
strcat(env, val);
putenv(env);
return 0;
}