Mercurial > mplayer.hg
view osdep/setenv.c @ 27128:adcb33e3d155
r26863: make use of the new MGA_VID_VERSION ioctl to check
r26900: Fix typo in string name.
r26901: mga_vid string wording fix
r26911: mga_vid driver wording fixes
r27063: Move message about which adapter is used to verbose mode.
author | kraymer |
---|---|
date | Mon, 30 Jun 2008 12:39:39 +0000 |
parents | 936209c39ed1 |
children | 5cfef41a1771 |
line wrap: on
line source
/* 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; }