]> granicus.if.org Git - sudo/commitdiff
Only include stddef.h where it is needed.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 20 Jun 2015 11:34:35 +0000 (05:34 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sat, 20 Jun 2015 11:34:35 +0000 (05:34 -0600)
135 files changed:
include/sudo_compat.h
lib/util/aix.c
lib/util/closefrom.c
lib/util/event.c
lib/util/event_poll.c
lib/util/event_select.c
lib/util/getaddrinfo.c
lib/util/getcwd.c
lib/util/getgrouplist.c
lib/util/gethostname.c
lib/util/getline.c
lib/util/getopt_long.c
lib/util/gettime.c
lib/util/gidlist.c
lib/util/glob.c
lib/util/key_val.c
lib/util/lbuf.c
lib/util/locking.c
lib/util/mksiglist.c
lib/util/mksigname.c
lib/util/parseln.c
lib/util/progname.c
lib/util/pw_dup.c
lib/util/reallocarray.c
lib/util/regress/atofoo/atofoo_test.c
lib/util/regress/parse_gids/parse_gids_test.c
lib/util/regress/progname/progname_test.c
lib/util/regress/strsplit/strsplit_test.c
lib/util/regress/sudo_conf/conf_test.c
lib/util/regress/sudo_parseln/parseln_test.c
lib/util/setgroups.c
lib/util/sha2.c
lib/util/sig2str.c
lib/util/snprintf.c
lib/util/strndup.c
lib/util/strsplit.c
lib/util/strtobool.c
lib/util/strtoid.c
lib/util/strtomode.c
lib/util/strtonum.c
lib/util/sudo_conf.c
lib/util/sudo_debug.c
lib/util/sudo_dso.c
lib/util/term.c
lib/util/ttysize.c
plugins/group_file/getgrent.c
plugins/group_file/group_file.c
plugins/group_file/plugin_test.c
plugins/sample/sample_plugin.c
plugins/sudoers/alias.c
plugins/sudoers/audit.c
plugins/sudoers/auth/afs.c
plugins/sudoers/auth/aix_auth.c
plugins/sudoers/auth/bsdauth.c
plugins/sudoers/auth/dce.c
plugins/sudoers/auth/fwtk.c
plugins/sudoers/auth/kerb5.c
plugins/sudoers/auth/pam.c
plugins/sudoers/auth/passwd.c
plugins/sudoers/auth/rfc1938.c
plugins/sudoers/auth/secureware.c
plugins/sudoers/auth/securid5.c
plugins/sudoers/auth/sia.c
plugins/sudoers/auth/sudo_auth.c
plugins/sudoers/base64.c
plugins/sudoers/boottime.c
plugins/sudoers/check.c
plugins/sudoers/defaults.c
plugins/sudoers/editor.c
plugins/sudoers/env.c
plugins/sudoers/find_path.c
plugins/sudoers/getdate.c
plugins/sudoers/getdate.y
plugins/sudoers/getspwuid.c
plugins/sudoers/group_plugin.c
plugins/sudoers/interfaces.c
plugins/sudoers/iolog.c
plugins/sudoers/iolog_path.c
plugins/sudoers/linux_audit.c
plugins/sudoers/locale.c
plugins/sudoers/logging.c
plugins/sudoers/logwrap.c
plugins/sudoers/match.c
plugins/sudoers/match_addr.c
plugins/sudoers/parse.c
plugins/sudoers/policy.c
plugins/sudoers/prompt.c
plugins/sudoers/pwutil_impl.c
plugins/sudoers/redblack.c
plugins/sudoers/regress/check_symbols/check_symbols.c
plugins/sudoers/regress/iolog_path/check_iolog_path.c
plugins/sudoers/regress/logging/check_wrap.c
plugins/sudoers/regress/parser/check_addr.c
plugins/sudoers/regress/parser/check_base64.c
plugins/sudoers/regress/parser/check_digest.c
plugins/sudoers/regress/parser/check_fill.c
plugins/sudoers/regress/parser/check_hexchar.c
plugins/sudoers/set_perms.c
plugins/sudoers/sssd.c
plugins/sudoers/sudo_nss.c
plugins/sudoers/sudo_printf.c
plugins/sudoers/sudoers.c
plugins/sudoers/sudoers_debug.c
plugins/sudoers/sudoreplay.c
plugins/sudoers/testsudoers.c
plugins/sudoers/timestamp.c
plugins/sudoers/timestr.c
plugins/sudoers/toke.c
plugins/sudoers/toke.l
plugins/sudoers/toke_util.c
plugins/sudoers/tsgetgrpw.c
plugins/sudoers/visudo.c
plugins/sudoers/visudo_json.c
plugins/system_group/system_group.c
src/conversation.c
src/env_hooks.c
src/exec.c
src/exec_common.c
src/exec_pty.c
src/get_pty.c
src/hooks.c
src/load_plugins.c
src/net_ifs.c
src/openbsd.c
src/parse_args.c
src/preserve_fds.c
src/regress/ttyname/check_ttyname.c
src/selinux.c
src/signal.c
src/solaris.c
src/sudo.c
src/sudo_edit.c
src/tgetpass.c
src/ttyname.c
src/utmp.c

index b883afe226b277bac87a9b916230701705cc8f31..4161ee887d16a209f1276cc2dc6ef9ca732ac072 100644 (file)
@@ -23,7 +23,6 @@
 #define SUDO_COMPAT_H
 
 #include <stdio.h>
-#include <stddef.h>
 #include <stdarg.h>
 
 /*
 #undef ISSET
 #define ISSET(t, f)     ((t) & (f))
 
-/*
- * Older systems may be missing stddef.h and/or offsetof macro
- */
-#ifndef offsetof
-# ifdef __offsetof
-#  define offsetof(type, field) __offsetof(type, field)
-# else
-#  define offsetof(type, field) ((size_t)(&((type *)0)->field))
-# endif
-#endif
-
 /*
  * Simple isblank() macro and function for systems without it.
  */
index c8966bbdc90be1e1ae9e9a78f41a155adcbbe212..501bcda3ac03f53148067b04be952e759143f6dc 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <errno.h>
 #include <usersec.h>
 #include <uinfo.h>
index 45501ae204f9dde51211e79d72635e874df7a212..98b2e2ba87fdd9e149bd1271d066f4a51e1fd292 100644 (file)
@@ -23,7 +23,6 @@
 #include <unistd.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <fcntl.h>
 #include <limits.h>
 #ifdef HAVE_PSTAT_GETPROC
index cc4322e795a341572782dd3d1b48fa14cd2f6487..0f209eb8d6470c63416e8a95f3aed59ae85dbec3 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 4912078e240b020d680a46755f5a3e8aaa554f9e..e2454c003ff773822c28e3cd6b5f74ca90ebc5cd 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 16344aa8951bae44b84228413251fdb907f60da4..a63d9c06349589b81c0e0fc33b5366aac4f928c1 100644 (file)
@@ -26,7 +26,6 @@
 #endif /* HAVE_SYS_SELECT_H */
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 4f0c29fdb46b201c86cc00f5f91d8caf43eeed72..1a24d9d8f14331fa54967db74cd8bb849d9f2518 100644 (file)
@@ -39,7 +39,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index df6486eca8ccf727d717040a9eb6c0ad40e1b772..3d9d8a17c69910082aae0ca3eef47b4df17103a4 100644 (file)
@@ -37,7 +37,6 @@
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 7dc69610df978ada45d39bddb7267c716cb8620c..29e70d557e13e58dccc5c56974843e435dae4c04 100644 (file)
@@ -22,7 +22,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 382ac2bb5c48ca9ec994c925e0f21a5bef7c3011..7f24458d6f6433936dbd2941485d0ac72c761b58 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <unistd.h>
 
 #include "sudo_compat.h"
index d705911dc2cca02d77fb12c986ad391d838ee08e..60bc6f918d0d835b758185ba1ae3d1868f0888f7 100644 (file)
@@ -22,7 +22,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 9465f47aa8e21a222b4eb92b4b942825c9eac4cd..2cebe40d3963952e208d56da9be5870d5fdd7a43 100644 (file)
@@ -55,7 +55,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f0139e28562c4674dc700d1e89e5cb70fcdf74cd..8eae8047d32a32325fec4163bf72c9d25ffb7378 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif /* HAVE_UNISTD_H */
index cd30e79cfee35483f267f32db04bc0f83878472c..c65f0f4ce99bf52ae7148f60191e8f8a0717d9b8 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <grp.h>
 
 #define DEFAULT_TEXT_DOMAIN    "sudo"
index 3f0b44ec325c1403dbf27cd804b630e65fbd435a..9c177e790e24a636d47eaee7dd8283d75ac44cae 100644 (file)
@@ -59,7 +59,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 7b1231ec8d949e06598f3c88030ea87a5ac5c071..34a5e6e3ae3d2c736b27cef4a09e08d085a39109 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index c87c40f4443422bbbd169259dcfb1e81b462240a..ae4afbf83899ac345fa2d3b5b73ac791ab38dc42 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index e7c6a07db4df2d811671a95ac6539622a659588e..879e2b4f256973aec1882a6fa2ed71aea3e88445 100644 (file)
@@ -26,7 +26,6 @@
 # include <sys/file.h>
 #endif /* HAVE_FLOCK */
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 5a82370f6b10fd92e6f62706fdec837300528fd5..cad81797ec147ef7058263635ab64a21b1169e38 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <signal.h>
 
 #include "sudo_compat.h"
index d221638cef5d1e124be4f75c3fc10bc2bbd0e7db..cd4ebf2a20a00a6cbab31dc243be88914fbbbd46 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <signal.h>
 
 #include "sudo_compat.h"
index 70e05cd26a7bab35b6964a6fe56c8d088bec4a85..71486e5218fc9c5055a6d7a4a5c647ea9a5f98e5 100644 (file)
@@ -19,7 +19,6 @@
 
 #include <sys/types.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 67b676709791f2c648163e9668a0121ee798fa2f..e99febd426f871f7c5f962656f7bf99d05d59144 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 1a901d773e9f97cbadab0daba1846d3423256376..25ebd07c619c1da14aa9b1047a0be6d67ccb5811 100644 (file)
@@ -27,7 +27,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 37b2f75efdb47b09d92f1a40a88e8aeed8887881..49aa0524f08a53553d112c1a470c9d47f6c3bc9b 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <sys/types.h>
 #include <stdlib.h>
-#include <stddef.h>
 #if defined(HAVE_STDINT_H)
 # include <stdint.h>
 #elif defined(HAVE_INTTYPES_H)
index fa4f53232e9da610ed30fc2014dbc6c1f922a9aa..62cbbd0700e1b6b9cf2224cd65c74fc2e7f286f7 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index dcc343824900f4249c80e3a9943bfcc60a94922f..13c4d544a00197bf4dcf043ccd2ad5bf9abde80e 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 83deddf98178ed787554a6046defccff6bc92015..2a58a585f36f71d708283bcbc4818a47b48f70ca 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 7e5455d3f7d0f8452beaa34f31dfaca60af45bf6..4a2919eae407ac8c46eed7ce0ca65c71d890d6d5 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d9e8e41de60dbf2c1891b3ef84ae51b8e9edc038..4a03f317951cbdb8ebb0d0f48df0e9126b624932 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f6bd5be45d95b8fe609abad2e200c1fd172ebae2..9dac11ec2a16586b3fe2517432416e9b81863de3 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d5e9b8733ec3e25e70defb71765d9bd70f719b70..80204a503fdc3acff8d7f1eb11cbcea8a09d6030 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif /* HAVE_UNISTD_H */
index 0c7d11ec6d5c4a43de75b6e393cd1887c0e24e3e..b04abd91f9c9795821a121b523282f8e47b6c958 100644 (file)
@@ -28,7 +28,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 9980fbfc923ae4829bc53b963482b4c66f352b05..7b4426b5888411ed72c78a7d75affb74f530ab61 100644 (file)
@@ -23,7 +23,6 @@
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 429032dff1f8bf7972076c7d6a867535d2550b86..ff87dd48c721a842e4261adc62654a70701103e1 100644 (file)
@@ -54,8 +54,8 @@
 #endif
 #include <limits.h>
 #include <stdarg.h>
-#include <stddef.h>
 #include <stdlib.h>
+#include <stddef.h>
 #if defined(HAVE_STDINT_H)
 # include <stdint.h>
 #elif defined(HAVE_INTTYPES_H)
index c07531d0e97972287c9ef48cb6a7963c53aa8616..fc617e314d6627e564f13a306d6b1dc5775630cd 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/types.h>
 
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 1a040a6e7bd1083d1ccc31c336a0a71dd9e96508..d63cbd047d52e3ba1c52edae99c25c58bcb1e8eb 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <errno.h>
 #include <grp.h>
 
index 3413a729b37fa7261978f21c54684f0f1e2a629b..755501cdc7fba4f79429eecddb8ccc7398cce2ba 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 769278e90f251782b2d91e36b8e0222292ed3b1f..a38bd3535019cd5fdfba9e679ea9bda218c9c70d 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #if defined(HAVE_STDINT_H)
 # include <stdint.h>
 #elif defined(HAVE_INTTYPES_H)
index b2091f939bb05203c1e22da550ac70726ef9fb22..5eeae5860c1c6e56ae631be7fcdc1a60abfbbad0 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <errno.h>
 
 #define DEFAULT_TEXT_DOMAIN    "sudo"
index 1a60013d3c40bff784581afa09bc0b478660ebcb..bad90a68d03a96111852291d7ed6a521ae097bad 100644 (file)
@@ -23,7 +23,6 @@
 #include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index db20b1be2b7119a2dce5acb2c6743840dac08498..efee7e70ecf13cb764edc674a8b75570d097459a 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 9754a6394f6b9b8759a9bcc443514e02a63ae9b2..9e1089746b9fb52ba43f402755aed60f0eebfeec 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/uio.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index e929577cda0afd7c5b01efb3b0376f96c65034a9..19b53025eb320384b220b496a219855baf6cc746 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d2dcefd935724f7c6733ef2e436704f70d271558..26c31b348d8164376c0d6973016cbe283f64becc 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 6f5489aa11fb1fdf7181f1c6e2542f1c941947cc..7a5416314fee96f6d3741dd8a49ff22afd588a5e 100644 (file)
@@ -22,7 +22,6 @@
 #include <sys/ioctl.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif /* HAVE_UNISTD_H */
index 1c39126b9d7cb87caf578bbea275245470a324a2..99eeca10136f2de07f58fae2437c726f1dcc7974 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 336ee2c656565a2ab5b3cde1944c48c0089368a4..53bb08b25f15d74ac69f2e9a9e003f30e3d63eaf 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 1be808ab5f35d96474c270cbfbca8773efee4e06..d16d86883ee042a8393f8a264620d6d9407fdb1f 100644 (file)
@@ -18,7 +18,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
index 5fefcb21cbb451988f358fba82f4f1bef689a3e1..44ff6aeef07c7511ba9f92c0bbe448a49455656b 100644 (file)
@@ -22,7 +22,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 0bde58f475fad603b091fdc2f7a94a7750603bd3..9ea70c5f3f4893dbd97e41997ad1368f1856902b 100644 (file)
@@ -22,7 +22,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index ddf97bc4c837c95dd6ff73be2ac1ba2a665bc8ed..768400cb504b7aacbb75de76dc885dc1ed89dbaa 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 
 #include "sudoers.h"
 
index 67aa9386ce6e64b81d1be234d87ea157b14911a5..c10913bfb8f51b1afe897434c967c1fbf0d13e18 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 9a79b2739f0d47da60809d26a70f61aea644df02..4b26c67e47677e810e3e15f6f8eecdaef66f639c 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 20d0a993bf63041d57fbf3b0579e2a9b53148b9b..1c40e9348c57f7804314ced6aa55cc10a0b1636d 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 674936ffb9b42e992a5eb387e9442d843250c009..eabc7dd008ef263cb05f991f21a6716adc096f7d 100644 (file)
@@ -40,7 +40,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 9967c9049187fa5654dd58a4da2931ea3b06a2d6..43aa279ca9cebf4332482b3e9c8684799daa5ff2 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f356d0fbe7e018e1e604efd05fdc6f4fc74ced40..c8550a27a305fa8db152ab09448bc15c47938100 100644 (file)
@@ -29,7 +29,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d1bfc97327d308bf19f83134a18f3bbc0211bb57..5df068f85904cc1efc31ffc4ee69ef6194b075b2 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 18074bf55ae6f78cc9c7f8dd3ebf466c3de8166b..3e7dee699f9ea8b4f5bb11c3a8962e4cde105b69 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f336a7c0be3083c6a33e349fa02d8a07baed8f64..8dc7dd92970f7cd5a38a4ece2c65cfbc20738fe7 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f482841afbc3ef0df72a429d50f3370fbd706e4f..c6f326eb23b119d77bac465b01ed2dd0670516ee 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f7833f5cb2113107c1517c582c323951e5600388..1ce73c02a0186b5667ca947fc77ecd4b5be38fcc 100644 (file)
@@ -30,7 +30,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 4b78ca512fa7add57748ce03aa4a112b5efb2643..5d400524a86fcc92a4b7e97e9cd75ce071302cad 100644 (file)
@@ -28,7 +28,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index dba71bac88b7a9ac5e2c9e4cae26103938bb0224..61378a166ea2ee20620c6477c3aefe84e363bc42 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 009ce8e35397b1ff4572d284f09dca7bde4666a2..23b4020077e7ad3de6c2d6e2ce4a8cf9f63ab025 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index a151f56edee08e4bd00f27d88c9bfa0bab9ebb5f..ad393b26ea7498fe67aaa856eef5c85234edceea 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 26168ba264d427493e3e2dc17d861bb76fae8de8..ff2c0842e8bf77177eecf98c92e1a822b59fa0df 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 0e2bf355578ce3c1175a97364437853789163eaa..5e6b29105d954f73001d429ea8a14d3fbbbe3138 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 25c1196e51ab35593542a255634c3fc5a5824793..8ffc37af3e0cfd75661b9fde4e95bc3816b6c2e1 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 24273f0d00e6ca9dad186002138c022d761ed12d..060a15aa91bad4300c2a02a06dbddf4f48979936 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f3cedba050f68c43e1b51e0f7efd8305373c19dd..6c9f47aa3f0441039ad2f9223f800a0008a2ccef 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d3754945db8eafd7b926de6f4f9d67ef07fd46ff..526156a40165c302350a1423994afc1b67db00d1 100644 (file)
@@ -30,7 +30,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
@@ -111,7 +110,7 @@ static int  yyerror(const char *s);
 static int     yylex(void);
        int     yyparse(void);
 
-#line 104 "getdate.y"
+#line 103 "getdate.y"
 #ifndef YYSTYPE_DEFINED
 #define YYSTYPE_DEFINED
 typedef union {
@@ -119,7 +118,7 @@ typedef union {
     enum _MERIDIAN     Meridian;
 } YYSTYPE;
 #endif /* YYSTYPE_DEFINED */
-#line 122 "getdate.c"
+#line 121 "getdate.c"
 #define tAGO 257
 #define tDAY 258
 #define tDAYZONE 259
@@ -387,7 +386,7 @@ short *yyss;
 short *yysslim;
 YYSTYPE *yyvs;
 unsigned int yystacksize;
-#line 323 "getdate.y"
+#line 322 "getdate.y"
 
 /* Month and day table. */
 static TABLE const MonthDayTable[] = {
@@ -1009,7 +1008,7 @@ main(int argc, char *argv[])
     /* NOTREACHED */
 }
 #endif /* TEST */
-#line 960 "getdate.c"
+#line 959 "getdate.c"
 /* allocate initial stack or double stack size, up to YYMAXDEPTH */
 #if defined(__cplusplus) || defined(__STDC__)
 static int yygrowstack(void)
@@ -1218,37 +1217,37 @@ yyreduce:
     switch (yyn)
     {
 case 3:
-#line 122 "getdate.y"
+#line 121 "getdate.y"
 {
            yyHaveTime++;
        }
 break;
 case 4:
-#line 125 "getdate.y"
+#line 124 "getdate.y"
 {
            yyHaveZone++;
        }
 break;
 case 5:
-#line 128 "getdate.y"
+#line 127 "getdate.y"
 {
            yyHaveDate++;
        }
 break;
 case 6:
-#line 131 "getdate.y"
+#line 130 "getdate.y"
 {
            yyHaveDay++;
        }
 break;
 case 7:
-#line 134 "getdate.y"
+#line 133 "getdate.y"
 {
            yyHaveRel++;
        }
 break;
 case 9:
-#line 140 "getdate.y"
+#line 139 "getdate.y"
 {
            yyHour = yyvsp[-1].Number;
            yyMinutes = 0;
@@ -1257,7 +1256,7 @@ case 9:
        }
 break;
 case 10:
-#line 146 "getdate.y"
+#line 145 "getdate.y"
 {
            yyHour = yyvsp[-3].Number;
            yyMinutes = yyvsp[-1].Number;
@@ -1266,7 +1265,7 @@ case 10:
        }
 break;
 case 11:
-#line 152 "getdate.y"
+#line 151 "getdate.y"
 {
            yyHour = yyvsp[-3].Number;
            yyMinutes = yyvsp[-1].Number;
@@ -1276,7 +1275,7 @@ case 11:
        }
 break;
 case 12:
-#line 159 "getdate.y"
+#line 158 "getdate.y"
 {
            yyHour = yyvsp[-5].Number;
            yyMinutes = yyvsp[-3].Number;
@@ -1285,7 +1284,7 @@ case 12:
        }
 break;
 case 13:
-#line 165 "getdate.y"
+#line 164 "getdate.y"
 {
            yyHour = yyvsp[-5].Number;
            yyMinutes = yyvsp[-3].Number;
@@ -1296,56 +1295,56 @@ case 13:
        }
 break;
 case 14:
-#line 175 "getdate.y"
+#line 174 "getdate.y"
 {
            yyTimezone = yyvsp[0].Number;
            yyDSTmode = DSToff;
        }
 break;
 case 15:
-#line 179 "getdate.y"
+#line 178 "getdate.y"
 {
            yyTimezone = yyvsp[0].Number;
            yyDSTmode = DSTon;
        }
 break;
 case 16:
-#line 184 "getdate.y"
+#line 183 "getdate.y"
 {
            yyTimezone = yyvsp[-1].Number;
            yyDSTmode = DSTon;
        }
 break;
 case 17:
-#line 190 "getdate.y"
+#line 189 "getdate.y"
 {
            yyDayOrdinal = 1;
            yyDayNumber = yyvsp[0].Number;
        }
 break;
 case 18:
-#line 194 "getdate.y"
+#line 193 "getdate.y"
 {
            yyDayOrdinal = 1;
            yyDayNumber = yyvsp[-1].Number;
        }
 break;
 case 19:
-#line 198 "getdate.y"
+#line 197 "getdate.y"
 {
            yyDayOrdinal = yyvsp[-1].Number;
            yyDayNumber = yyvsp[0].Number;
        }
 break;
 case 20:
-#line 204 "getdate.y"
+#line 203 "getdate.y"
 {
            yyMonth = yyvsp[-2].Number;
            yyDay = yyvsp[0].Number;
        }
 break;
 case 21:
-#line 208 "getdate.y"
+#line 207 "getdate.y"
 {
            if (yyvsp[-4].Number >= 100) {
                yyYear = yyvsp[-4].Number;
@@ -1359,7 +1358,7 @@ case 21:
        }
 break;
 case 22:
-#line 219 "getdate.y"
+#line 218 "getdate.y"
 {
            /* ISO 8601 format.  yyyy-mm-dd.  */
            yyYear = yyvsp[-2].Number;
@@ -1368,7 +1367,7 @@ case 22:
        }
 break;
 case 23:
-#line 225 "getdate.y"
+#line 224 "getdate.y"
 {
            /* e.g. 17-JUN-1992.  */
            yyDay = yyvsp[-2].Number;
@@ -1377,14 +1376,14 @@ case 23:
        }
 break;
 case 24:
-#line 231 "getdate.y"
+#line 230 "getdate.y"
 {
            yyMonth = yyvsp[-1].Number;
            yyDay = yyvsp[0].Number;
        }
 break;
 case 25:
-#line 235 "getdate.y"
+#line 234 "getdate.y"
 {
            yyMonth = yyvsp[-3].Number;
            yyDay = yyvsp[-2].Number;
@@ -1392,14 +1391,14 @@ case 25:
        }
 break;
 case 26:
-#line 240 "getdate.y"
+#line 239 "getdate.y"
 {
            yyMonth = yyvsp[0].Number;
            yyDay = yyvsp[-1].Number;
        }
 break;
 case 27:
-#line 244 "getdate.y"
+#line 243 "getdate.y"
 {
            yyMonth = yyvsp[-1].Number;
            yyDay = yyvsp[-2].Number;
@@ -1407,68 +1406,68 @@ case 27:
        }
 break;
 case 28:
-#line 251 "getdate.y"
+#line 250 "getdate.y"
 {
            yyRelSeconds = -yyRelSeconds;
            yyRelMonth = -yyRelMonth;
        }
 break;
 case 30:
-#line 258 "getdate.y"
+#line 257 "getdate.y"
 {
            yyRelSeconds += yyvsp[-1].Number * yyvsp[0].Number * 60L;
        }
 break;
 case 31:
-#line 261 "getdate.y"
+#line 260 "getdate.y"
 {
            yyRelSeconds += yyvsp[-1].Number * yyvsp[0].Number * 60L;
        }
 break;
 case 32:
-#line 264 "getdate.y"
+#line 263 "getdate.y"
 {
            yyRelSeconds += yyvsp[0].Number * 60L;
        }
 break;
 case 33:
-#line 267 "getdate.y"
+#line 266 "getdate.y"
 {
            yyRelSeconds += yyvsp[-1].Number;
        }
 break;
 case 34:
-#line 270 "getdate.y"
+#line 269 "getdate.y"
 {
            yyRelSeconds += yyvsp[-1].Number;
        }
 break;
 case 35:
-#line 273 "getdate.y"
+#line 272 "getdate.y"
 {
            yyRelSeconds++;
        }
 break;
 case 36:
-#line 276 "getdate.y"
+#line 275 "getdate.y"
 {
            yyRelMonth += yyvsp[-1].Number * yyvsp[0].Number;
        }
 break;
 case 37:
-#line 279 "getdate.y"
+#line 278 "getdate.y"
 {
            yyRelMonth += yyvsp[-1].Number * yyvsp[0].Number;
        }
 break;
 case 38:
-#line 282 "getdate.y"
+#line 281 "getdate.y"
 {
            yyRelMonth += yyvsp[0].Number;
        }
 break;
 case 39:
-#line 287 "getdate.y"
+#line 286 "getdate.y"
 {
            if (yyHaveTime && yyHaveDate && !yyHaveRel)
                yyYear = yyvsp[0].Number;
@@ -1496,18 +1495,18 @@ case 39:
        }
 break;
 case 40:
-#line 314 "getdate.y"
+#line 313 "getdate.y"
 {
            yyval.Meridian = MER24;
        }
 break;
 case 41:
-#line 317 "getdate.y"
+#line 316 "getdate.y"
 {
            yyval.Meridian = yyvsp[0].Meridian;
        }
 break;
-#line 1458 "getdate.c"
+#line 1457 "getdate.c"
     }
     yyssp -= yym;
     yystate = *yyssp;
index d03eb1b7543903bcd57ba8e8cb24690d4eae2161..a213ba0b05b35d59862bccb861251a12c49f24da 100644 (file)
@@ -18,7 +18,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 9ac07a2126bbc6989d929837f7de903ad9cef5e7..2615db5161533bc9eae5e118656b0a68e1f5c43e 100644 (file)
@@ -25,7 +25,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 2d1395cc7224f0afa7003715d3f322422512c1aa..36d15ffc1c0e687fa32acc813eeaf6ed5356e242 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 822ac18907be7778f6f27782a419bf26e0b52a43..47a62b4242f14434ce00f2c6cebe1d814ca2b595 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index af32dc69ca6ae2ffbe7c9b27d125aaad5f21a841..6fd214984ca3bbf1cb8ca479b8588c3c5404eab5 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/time.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 3fed9544587dfd771ec56966038b9579f0cd2afe..b0c30bba9b9d466cbe032f0bcdb7f8d048f6076b 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 1b068f6e2272cbc07f23db1dea61fd68f4afb271..ec0437f6e58ea4819a74fe5737c5c0da800be1bc 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <string.h>
index 1259149cd6f7b1051b2249359828693fbb85c189..74be2646e57e388f7ec4ac626368778234e4c875 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index fa57207be071abc22ae42268f85300c2dc1f4ed6..cd2322d51803f0751012e1971d02d160a785ca6b 100644 (file)
@@ -30,7 +30,6 @@
 #include <sys/wait.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 4fe26b7f559d62efcc54c4f31641c08fcf15ccb8..8b09be4d5b9014ee3f511686a718440f2c890194 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 1c0d400be4fd956dec9c5b43482a5f0d019e8a54..2db363517f60d5a6993edf171e19c7b7d534fc35 100644 (file)
@@ -30,7 +30,6 @@
 #endif
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f79a84d9ce15e4e0fdb9644ce0cdbb637833b223..21de1a08e07fa528aa6be3c5718f796adaaa015d 100644 (file)
@@ -27,7 +27,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 2cb424e849eb2006495bfc8d2f2161f10163c029..00f8f96f3631beaf113b9cb7ea418d8304b5e5cb 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d7aa9b3aea89ccfb15cec114d2ee785f87282e95..3db9c4093b879dfaf7d9605a24ffa0935b383cf6 100644 (file)
@@ -21,7 +21,6 @@
 #include <netinet/in.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 3e76d5e9a3e22efae766b54b7dfafda9f831a3d1..eaec99057716196c1c6ecdc38745570bbf773d01 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 0bdf7bec7db8ca6af6732642b10963998cce7d32..65fcf3a90cd067edb9b1713927c0defd82f0421d 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 82103cd37454d9b3a0244875a1bca80086305540..a12085701c220e859c17b3b6972998862769eff5 100644 (file)
@@ -46,7 +46,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 
 #include "sudoers.h"
 #include "redblack.h"
index 4edb1ea57497eac4d8295bd089ed05fed64e7aef..6d104abf5814df170880e4909426f635b65a77d5 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d93e8eab580bf2348a8738885f5d7a32c7f45244..dd06d4c844d4f446fa5b51494044e63e22af274a 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 2c38213daa14f0cda90b2b84f5a6e3d133e57ffd..dcda5dc0cd7c46c90f15147bd99142b072c7e650 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 2a349efd2509bf9b5057fa2bba0b1d3d05473739..eb4619a1c91ae94efad8247f676bc5ea7fa18384 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <stdarg.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
index 4281383812023b025742d97853b880749357dc61..53753020a02aa21a354b3c4a0a30ff9d4df60c0a 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 87a33d97e71673804ee304123ef9511ccdd4f53e..f9d5716754fd84373b0c23b70c2616cdd2120fa7 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index ab3200d3986d62b8503e96f63aa8e2892e7477b5..85dce0faf7e0962f7611caaa2e7ab4009d338cff 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index 22229dbe4f30e336f705894ee3196661eb13109e..320d175f628841c46889b15c92b63bbc5618f70d 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 1a27b0a8bd998c8570e42650bdf753686571d2f9..7fb44fee840875e4ed946babe39991c4aed53b26 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 017b14623e73de4d314f56e57e6342d9809bd6de..a30fdf9f500304d4b3342f2e33f546436847e362 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 5e0ee65e0cf64780b35b4433d0dbf1f1b9cc899d..773c1449fd1f06aae5633276759e025c23398de5 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index e5f02fb329d30daaa9ab4798bb1d7ca7b02438ab..465eef8cd87a8cb9036f41ec888a6b0306e6760f 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <stdarg.h>
 #include <errno.h>
 
index be16eb95bfb77fb894cd54dda96c8bdb08770f49..256e43a934386f9ce4473eed582bc217b8ca1140 100644 (file)
@@ -30,7 +30,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f9b34981fb980e5d5e121c9f099efd6eb7fd2c65..3d3b7aa16004981d56031f5286422ab2d462f184 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index f39d7be6ca5c7838ec8206f393f3f590399d6892..3edffd248e7931bf45245e0f5982bacdba04a4e6 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/ioctl.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 13fb074ed93c477e037bba6a66f90422e1762bcc..e213d0cc26397ed7d0aa95980d10b973f5068e5f 100644 (file)
@@ -28,7 +28,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 933de0220614ccfd9adb5eac41678d14890d3d53..af5d000ba29bdc40bd1e5d32bf8f66fbebc3f63e 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 434640d653e3183dbd7a6a60f61232f52b4605de..0d977d96b6ce9a814ccd6d3b1d802f35af26fc18 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <time.h>
 
 #include "sudo_compat.h"
index 09dd634e7bb2c8e29862dc244add615676422974..eab4a054462752ab1453377f86e705b0b023c615 100644 (file)
@@ -1963,7 +1963,6 @@ char *yytext;
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 53eb4150ac9eeea1440ac9b7db7fb738cde35357..8781aebd66e1b6116f49471288beac235700c2e6 100644 (file)
@@ -29,7 +29,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index a91225e4f7743b119b64fd5ebd4a721d81d5b501..67d07143132b547c4babca2f62e6dc45dd6372f6 100644 (file)
@@ -27,7 +27,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 3a68694eb3606aab58602041e75183b828ac189f..04bfdbda7d1e55748de80dffab18c34c8acadfa1 100644 (file)
@@ -26,7 +26,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 42c63b0e12deb9ed828e6acd8230eefb453d2a60..04fd5bc6f820de858d2134052d9f7eb6e169f8e3 100644 (file)
@@ -40,7 +40,6 @@
 #include <sys/wait.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 41ce43aac6204c6dfa0d6ba0a0cbeef0726ca6b8..cbecbf8a6482c04837fef9f98ff6026478502e7c 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 7ac02d45c2df1ed9f19dfd5450ed24d348e7a099..7286627980722c61cf1817eb9ec423db4502d34e 100644 (file)
@@ -21,7 +21,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
 #else
index a82f1f099fd1e16f2557ce43a05278595908858a..7035f6c404bc118cea2cfacfbef7a644e6238bf2 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index a39ee8b2fc6364e398b93f2a2bf1ebaadd9b13f5..d05331d26dbdd846c43431e8651e3406a3d3d379 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index be248a004082ae3170bca24fb9f124a51f314f6a..c41dc3a1c0baac2b410be7964c00273781cb5240 100644 (file)
@@ -24,7 +24,6 @@
 #include <sys/ioctl.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 939e62d2cd302f2b7d441a2959c94046f90c3af4..32e99fe521d8df3a30d6aa83a6475d5df43ee826 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index f2999c2029aed055b10f05c9383bd5851d9d662d..58cd53c4625d9d787a2ef43de65533105d3848a0 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/ioctl.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 86defe0ba11ba5160ed5ed0e8476289a5c357700..e72db2c835028c561047699b2da67fcfad2c52a1 100644 (file)
@@ -25,7 +25,6 @@
 #endif /* HAVE_SYS_STROPTS_H */
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 4bd7da4402dad5372b383a49065c285ccb23270c..c64b69b203582ecf7f52f7136162fb9c7aa77838 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 11b0da12a914d15290b1602b97286cb3907d71c1..95bdd830d0c6e00cd00b44dd45638b0a330bad25 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d3b3bda942dcf52d53c2662ee7511b5b0f26ea10..f5d39e71f350b5ac53e015d319d3941c6f26f327 100644 (file)
@@ -39,7 +39,6 @@ struct rtentry;
 #endif
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 585f84cdf5fe0354b4e6ae42f5d2d6674767fd79..fb889e83c78e847e98757c0ee5254fd0a4ab8f5f 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index c0a2ba507708c0677f97dc262a24b77a8740ca99..1d7da7639590c8cae252e1f74d3d30426160974c 100644 (file)
@@ -24,7 +24,6 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 5926deb0b1f32990b8bfd0f63ae200130efcea0a..d0ab439e81784d3177d7534c372952298312da54 100644 (file)
@@ -25,7 +25,6 @@
 #endif /* HAVE_SYS_SELECT_H */
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 4c6eb1d8e45558dc08c799a57b157eac5976feb0..b4b2c3469eb95af9e830af30049d49507febbca6 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 76d25acb02186dba0dc3e319ac10f3c148373d47..8cadc5dd10d1de8371e1a69d00829089d0a8a22b 100644 (file)
@@ -32,7 +32,6 @@
 #include <sys/wait.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #include <string.h>
 #include <unistd.h>
 #include <errno.h>
index 95601365cfc53abcdc572336966c184884b1d0c2..f1c875dc5f3d0ca2fa9ee3d3f460016538c12fac 100644 (file)
@@ -19,7 +19,6 @@
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index ab96676b190d88bed38085da1af283e6823e80c4..ec5e9ca9b5999946958a973343f193e11a489ae7 100644 (file)
@@ -20,7 +20,6 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 8dd708454df169fbcdee29b5eb4dd39980131948..30a17931a0a041e13b59e67267670ffba2b760fa 100644 (file)
@@ -28,7 +28,6 @@
 #include <sys/resource.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index d20d3c956a3cc1e7256d9890bdc9eede51182df9..5c170405fc145d82f52910fe716710cf72d1a0d1 100644 (file)
@@ -23,7 +23,6 @@
 #include <sys/socket.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 299dd2c816247a86067fe4fdf74cda287f9ed0a0..57a70cc2a08ff19f25a642e20887c922e15dac20 100644 (file)
@@ -29,7 +29,6 @@
 #include <sys/wait.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 8f642d6f4d930a9c99ae028d7e318e8a01233319..fa1f581963d0a162c67aabe4618de6775d7f115b 100644 (file)
@@ -31,7 +31,6 @@
 #endif
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */
index 8f0c8209fe3b05060914575b96881ef2b7ea3710..0dd4de75d02ab5eedcbb2d4e151e169549bd35bb 100644 (file)
@@ -21,7 +21,6 @@
 #include <sys/wait.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <stddef.h>
 #ifdef HAVE_STRING_H
 # include <string.h>
 #endif /* HAVE_STRING_H */