diff options
author | Stefan Weil <sw@weilnetz.de> | 2016-03-14 15:47:05 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:49:39 -0600 |
commit | 026cbdc12af421eb180c0114e5308d84ab8d3032 (patch) | |
tree | 17eef03d6ea0409355967a4aa8092637c71b4e1f /scripts | |
parent | ca50cec9ec1385970c46d1fc64841ccb10f85b70 (diff) | |
download | hqemu-026cbdc12af421eb180c0114e5308d84ab8d3032.zip hqemu-026cbdc12af421eb180c0114e5308d84ab8d3032.tar.gz |
Remove unneeded include statements for setjmp.h
As soon as setjmp.h is included from qemu/osdep.h, those old include
statements are no longer needed.
Add also setjmp.h to the list in scripts/clean-includes.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/clean-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clean-includes b/scripts/clean-includes index 177d253..fb2a49c 100755 --- a/scripts/clean-includes +++ b/scripts/clean-includes @@ -140,7 +140,7 @@ for f in "$@"; do perl -n -i -e 'print if !/\s*#\s*include\s*(["<][^>"]*[">])/ || ! (grep { $_ eq $1 } qw ( "config-host.h" "qemu/compiler.h" "config.h" - <stdarg.h> <stddef.h> <stdbool.h> <stdint.h> <sys/types.h> + <setjmp.h> <stdarg.h> <stddef.h> <stdbool.h> <stdint.h> <sys/types.h> <stdlib.h> <stdio.h> <string.h> <strings.h> <inttypes.h> <limits.h> <unistd.h> <time.h> <ctype.h> <errno.h> <fcntl.h> <sys/stat.h> <sys/time.h> <assert.h> <signal.h> |