You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
193 B
C
10 lines
193 B
C
4 years ago
|
#ifndef _PATHS_H_
|
||
|
#define _PATHS_H_
|
||
|
|
||
|
#define _PATH_DEV "/dev/"
|
||
|
#define _PATH_DEVNULL "/dev/null"
|
||
|
#define _PATH_DEVZERO "/dev/zero"
|
||
|
#define _PATH_BSHELL "/bin/sh"
|
||
|
|
||
|
#endif /* _PATHS_H_ */
|