diff options
author | Paul Fox <pgf@brightstareng.com> | 2008-03-05 22:01:45 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2008-03-05 22:01:45 +0000 |
commit | b4a5087ee006bfee20c7272e92322f9f6377d042 (patch) | |
tree | 4d6e68ce997bc99ee55fb770751a0b39c8705b2a /libbb | |
parent | 4917c11432c06ae4119c8cea6964cdf431ec6ac5 (diff) | |
download | busybox-b4a5087ee006bfee20c7272e92322f9f6377d042.tar.gz |
define DEBUG as 0, for when ENABLE_FEATURE_DEVPTS is not on.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/getpty.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/getpty.c b/libbb/getpty.c index 4b65188fb..c006e34f5 100644 --- a/libbb/getpty.c +++ b/libbb/getpty.c @@ -8,6 +8,8 @@ #include "libbb.h" +#define DEBUG 0 + int getpty(char *line, int size) { int p; |