00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. - All rights reserved. 00003 */ 00004 00005 #ifndef _LIBU_SETENV_H_ 00006 #define _LIBU_SETENV_H_ 00007 00008 #include <u/libu_conf.h> 00009 00010 #ifdef HAVE_SETENV 00011 #include <stdlib.h> 00012 #else /* !HAVE_SETENV */ 00013 00014 #ifdef __cplusplus 00015 extern "C" { 00016 #endif 00017 00018 int setenv(const char *name, const char *value, int overwrite); 00019 00020 #ifdef __cplusplus 00021 } 00022 #endif 00023 00024 #endif /* HAVE_SETENV */ 00025 #endif /* !_LIBU_SETENV_H_ */