aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 66acc2278..df52027ce 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -212,7 +212,7 @@ char *xreadlink(const char *path);
212char *concat_path_file(const char *path, const char *filename); 212char *concat_path_file(const char *path, const char *filename);
213char *last_char_is(const char *s, int c); 213char *last_char_is(const char *s, int c);
214 214
215extern long arith (const char *startbuf); 215extern long arith (const char *startbuf, int *errcode);
216 216
217typedef struct file_headers_s { 217typedef struct file_headers_s {
218 char *name; 218 char *name;
@@ -261,6 +261,8 @@ char *dirname (const char *path);
261 261
262int make_directory (char *path, mode_t mode, int flags); 262int make_directory (char *path, mode_t mode, int flags);
263 263
264const char *u_signal_names(const char *str_sig, int *signo, int startnum);
265
264#define CT_AUTO 0 266#define CT_AUTO 0
265#define CT_UNIX2DOS 1 267#define CT_UNIX2DOS 1
266#define CT_DOS2UNIX 2 268#define CT_DOS2UNIX 2