diff options
| author | Ross Burton <[email protected]> | 2018-07-04 12:11:08 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2018-07-05 21:06:40 +0200 |
| commit | e893aab0d12284c8909ebacfca529c0b554abb9c (patch) | |
| tree | 7c50c7de9492e68b36ef7dbfedca4404aa198c60 /tests/debugaltlink.c | |
| parent | d612684109f0395b86e4aaad9ba94e02f79a099a (diff) | |
Consolidate error.h inclusion in system.h
error.h isn't standard and so isn't part of the musl C library.
To easy future porting, consolidate the inclusion of error.h into system.h.
https://sourceware.org/bugzilla/show_bug.cgi?id=21008
Signed-off-by: Ross Burton <[email protected]>
Diffstat (limited to 'tests/debugaltlink.c')
| -rw-r--r-- | tests/debugaltlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/debugaltlink.c b/tests/debugaltlink.c index 6d97d500..e7dc8623 100644 --- a/tests/debugaltlink.c +++ b/tests/debugaltlink.c @@ -23,13 +23,13 @@ #include ELFUTILS_HEADER(dw) #include ELFUTILS_HEADER(dwelf) #include <stdio.h> -#include <error.h> #include <string.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> +#include "system.h" int main (int argc, char *argv[]) |
