diff options
author | Eric Andersen | 2003-03-07 17:29:12 +0000 |
---|---|---|
committer | Eric Andersen | 2003-03-07 17:29:12 +0000 |
commit | a9c6bc41e99e0c28d524060805429c7b742546a7 (patch) | |
tree | d22470e744557d02a92e205de822fd418d3190b1 /libbb/Makefile.in | |
parent | bae7c1ac240211bd3183d48888708bfbc4f96a6d (diff) | |
download | busybox-a9c6bc41e99e0c28d524060805429c7b742546a7.zip busybox-a9c6bc41e99e0c28d524060805429c7b742546a7.tar.gz |
Define bb_xgetlarg as a standard interface for extracting
numbers from getopt which includes careful error checking.
-Erik
Diffstat (limited to 'libbb/Makefile.in')
-rw-r--r-- | libbb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 08f8028..09c629e 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in @@ -43,7 +43,7 @@ LIBBB_SRC:= \ setup_environment.c simplify_path.c syscalls.c syslog_msg_with_name.c \ time_string.c trim.c u_signal_names.c vdprintf.c verror_msg.c \ vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xfuncs.c \ - xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c + xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c bb_xgetlarg.c LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC)) |