diff options
Diffstat (limited to '')
-rw-r--r-- | src/3rdparty/autotrace/atou.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/3rdparty/autotrace/atou.h b/src/3rdparty/autotrace/atou.h new file mode 100644 index 0000000..f430310 --- /dev/null +++ b/src/3rdparty/autotrace/atou.h @@ -0,0 +1,9 @@ +/* atou.h: like atoi, but if the number is negative, abort. */ + +#ifndef ATOU_H +#define ATOU_H + +#include "types.h" +unsigned atou(gchar * s); + +#endif /* not ATOU_H */ |