Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3264 → Rev 3265

/branches/shell/uspace/app/bdsh/config.h
0,0 → 1,35
/* Various things that are used in many files
* Various temporary port work-arounds are addressed in __HELENOS__ , this
* serves as a convenience and later as a guide to make "phony.h" for future
* ports */
 
/* Specific port work-arounds : */
#ifdef HELENOS
#define PATH_MAX 255
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 0
#endif
 
/* Work around for getenv() */
#define PATH "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
#define PATH_DELIM ":"
 
/* Used in many places */
#define SMALL_BUFLEN 256
#define LARGE_BUFLEN 1024
 
/* How many words (arguments) are permitted, how big can a whole
* sentence be? Similar to ARG_MAX */
#define WORD_MAX 255
#define INPUT_MAX 1024
 
/* Leftovers from Autoconf */
#define PACKAGE_MAINTAINER "Tim Post"
#define PACKAGE_BUGREPORT "tinkertim@gmail.com"
#define PACKAGE_NAME "scli"
#define PACKAGE_STRING "scli 0.0.1"
#define PACKAGE_TARNAME "scli"
#define PACKAGE_VERSION "0.0.1"