~vojtech-horky/helenos/helenos-qemu

« back to all changes in this revision

Viewing changes to uspace/lib/posix/include/posix/stdlib.h

  • Committer: Jan Mares
  • Date: 2015-08-13 16:30:22 UTC
  • Revision ID: maresja1@gmail.com-20150813163022-2lqo8sxil30q1lcr
Added setenv mockup and fix of abuse of select API for SDL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
 
93
93
/* Environment Access */
94
94
extern char *__POSIX_DEF__(getenv)(const char *name);
 
95
extern int *__POSIX_DEF__(setenv)(const char *envname, const char *envval, int overwrite);
95
96
extern int __POSIX_DEF__(putenv)(char *string);
96
97
extern int __POSIX_DEF__(system)(const char *string);
97
98