diff options
Diffstat (limited to 'include/environment.h')
| -rw-r--r-- | include/environment.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/environment.h b/include/environment.h index bedbc5424..082b3e15b 100644 --- a/include/environment.h +++ b/include/environment.h @@ -149,6 +149,12 @@ typedef	struct environment_s {  	unsigned char	data[ENV_SIZE]; /* Environment data		*/  } env_t; +#ifndef DO_DEPS_ONLY + +#include <search.h> + +extern struct hsearch_data env_htab; +  /* Function that returns a character from the environment */  unsigned char env_get_char (int); @@ -165,4 +171,6 @@ void set_default_env(const char *s);  /* Import from binary representation into hash table */  int env_import(const char *buf, int check); +#endif +  #endif	/* _ENVIRONMENT_H_ */ |