blob: 96b70e35f6cb9a30c70ca030770636dbe9504e9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* 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 <std/process.h>
#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
|