source: mainline/uspace/app/bdsh/config.h@ 86018c1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 86018c1 was 06a195bc, checked in by Tim Post <echo@…>, 17 years ago

Drop references to HELENOS in config.h

  • Property mode set to 100644
File size: 844 bytes
RevLine 
[06a195bc]1/* Various things that are used in many places including a few
2 * tidbits left over from autoconf prior to the HelenOS port */
[216d6fc]3
4/* Specific port work-arounds : */
[8722b38]5#ifndef PATH_MAX
[216d6fc]6#define PATH_MAX 255
[8722b38]7#endif
8
9#ifndef EXIT_SUCCESS
[216d6fc]10#define EXIT_SUCCESS 0
[8722b38]11#define EXIT_FAILURE 1
12#endif
[216d6fc]13
14/* Work around for getenv() */
[de9c5cb]15#define PATH "/srv:/app"
[216d6fc]16#define PATH_DELIM ":"
17
18/* Used in many places */
19#define SMALL_BUFLEN 256
20#define LARGE_BUFLEN 1024
21
22/* How many words (arguments) are permitted, how big can a whole
23 * sentence be? Similar to ARG_MAX */
24#define WORD_MAX 255
25#define INPUT_MAX 1024
26
27/* Leftovers from Autoconf */
28#define PACKAGE_MAINTAINER "Tim Post"
29#define PACKAGE_BUGREPORT "echo@echoreply.us"
30#define PACKAGE_NAME "bdsh"
31#define PACKAGE_STRING "The brain dead shell"
[8722b38]32#define PACKAGE_TARNAME "bdsh"
[216d6fc]33#define PACKAGE_VERSION "0.0.1"
34
35
36
Note: See TracBrowser for help on using the repository browser.