Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. extern char * __libc_getenv(const char *name); // from crt0/env.c
  6. char * getenv(const char *name)
  7. {
  8.  return __libc_getenv(name);
  9. }
  10.