diff options
author | Edgar Kaziakhmedov <edgar.kaziakhmedov@virtuozzo.com> | 2017-08-22 15:35:02 +0300 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2017-08-22 15:24:05 +0000 |
commit | b1fab45b479568d1bd26561f1f18e98e91b2a46d (patch) | |
tree | 4fb72b92f185a4b02262083459e78894189d7aa0 /Makefile.am | |
parent | bc9fd5ffb9633a15b2753b2c812ce78b222cec7a (diff) | |
download | strace-b1fab45b479568d1bd26561f1f18e98e91b2a46d.tar.gz |
Move string_to_uint* functions to a separate file
Make string_to_uint* functions available to other binaries
included in the strace package.
* string_to_uint.h: New file.
* defs.h: Include it.
(string_to_uint_ex, string_to_uint_upto, string_to_uint): Move
to string_to_uint.h.
* util.c (string_to_uint_ex, string_to_uint): Move ...
* string_to_uint.c: ... to the new file.
* Makefile.am (strace_SOURCES): Add string_to_uint.h and string_to_uint.c.
Signed-off-by: Edgar Kaziakhmedov <edgar.kaziakhmedov@virtuozzo.com>
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 2a477f688..53115cd56 100644 --- a/Makefile.am +++ b/Makefile.am @@ -284,6 +284,8 @@ strace_SOURCES = \ statx.c \ statx.h \ strace.c \ + string_to_uint.h \ + string_to_uint.c \ swapon.c \ syscall.c \ sysctl.c \ |