view osdep/setenv.c @ 24374:8591a357eb36

Fix warnings: cfg-common.h:386: warning: redundant redeclaration of 'audio_stream' stream/stream.h:301: warning: previous declaration of 'audio_stream' was here
author voroshil
date Mon, 10 Sep 2007 01:13:13 +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;
}