runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

env.h (129B)


      1 /* Public domain. */
      2 
      3 #ifndef ENV_H
      4 #define ENV_H
      5 
      6 extern char **environ;
      7 
      8 extern /*@null@*/char *env_get(const char *);
      9 
     10 #endif