/* * Portable process environment routines. * $Id$ * Copyright (c) 1997 by Tycho Softworks. * For conditions of distribution and reuse see product license. */ #ifndef __OTHER_ENV_H__ #define __OTHER_ENV_H__ #ifndef __STD_PROCESS_H__ #include #endif #ifdef __cplusplus extern "C" { #endif #ifdef __NAMESPACE #define homedir __NAMESPACE(homedir) #define language __NAMESPACE(language) #endif char *homedir(void); char *language(void); #ifdef __cplusplus } #endif #endif