Tidy up #include lines.
authoryasuoka <yasuoka@openbsd.org>
Sat, 8 Jul 2023 08:53:26 +0000 (08:53 +0000)
committeryasuoka <yasuoka@openbsd.org>
Sat, 8 Jul 2023 08:53:26 +0000 (08:53 +0000)
lib/libradius/radius.c
lib/libradius/radius.h
lib/libradius/radius_attr.c
lib/libradius/radius_eapmsk.c
lib/libradius/radius_userpass.c

index 3dd9559..f1a20cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: radius.c,v 1.3 2015/08/20 21:51:42 deraadt Exp $ */
+/*     $OpenBSD: radius.c,v 1.4 2023/07/08 08:53:26 yasuoka Exp $ */
 
 /*-
  * Copyright (c) 2009 Internet Initiative Japan Inc.
  * SUCH DAMAGE.
  */
 
-#include <sys/types.h>
 #include <sys/socket.h>
-#include <netinet/in.h>
-
 #include <sys/uio.h>
-#include <stdbool.h>
+#include <arpa/inet.h>
+
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 98c5ee6..1bfcd3d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: radius.h,v 1.1 2015/07/20 23:52:29 yasuoka Exp $ */
+/*     $OpenBSD: radius.h,v 1.2 2023/07/08 08:53:26 yasuoka Exp $ */
 
 /*-
  * Copyright (c) 2009 Internet Initiative Japan Inc.
 #define RADIUS_TUNNEL_MEDIUM_TYPE_E163         7       /* E.163 (POTS) */
 #define RADIUS_TUNNEL_MEDIUM_TYPE_E164         8       /* E.164 (SMDS, Frame
                                                         * Relay, ATM) */
+#include <sys/socket.h>
+#include <sys/cdefs.h>
 
+#include <stdbool.h>
+#include <stdint.h>
 
-
-#include <sys/cdefs.h>
+struct in_addr;
+struct in6_addr;
 
 __BEGIN_DECLS
 
index e07985e..1a99470 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: radius_attr.c,v 1.1 2015/07/20 23:52:29 yasuoka Exp $ */
+/*     $OpenBSD: radius_attr.c,v 1.2 2023/07/08 08:53:26 yasuoka Exp $ */
 
 /*-
  * Copyright (c) 2009 Internet Initiative Japan Inc.
  * SUCH DAMAGE.
  */
 
-#include <sys/types.h>
-#include <sys/socket.h>
 #include <netinet/in.h>
+#include <arpa/inet.h>
 
-#include <md5.h>
+#include <endian.h>
 #include <stdbool.h>
+#include <stdint.h>
 #include <stdio.h>
-#include <stdlib.h>
 #include <string.h>
 
 #include "radius.h"
index 0cb69dd..95fe0f7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: radius_eapmsk.c,v 1.1 2015/07/20 23:52:29 yasuoka Exp $ */
+/*     $OpenBSD: radius_eapmsk.c,v 1.2 2023/07/08 08:53:26 yasuoka Exp $ */
 
 /*-
  * Copyright (c) 2013 Internet Initiative Japan Inc.
  * SUCH DAMAGE.
  */
 
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-
-#include <stdbool.h>
-#include <stdio.h>
-#include <stdlib.h>
+#include <stdint.h>
 #include <string.h>
 
-#include <openssl/md5.h>
-
 #include "radius.h"
 
 #include "radius_local.h"
index 08bbc3d..79c9498 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: radius_userpass.c,v 1.1 2015/07/20 23:52:29 yasuoka Exp $ */
+/*     $OpenBSD: radius_userpass.c,v 1.2 2023/07/08 08:53:26 yasuoka Exp $ */
 
 /*-
  * Copyright (c) 2013 Internet Initiative Japan Inc.
  * SUCH DAMAGE.
  */
 
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-
-#include <stdbool.h>
 #include <stdio.h>
-#include <stdlib.h>
 #include <string.h>
 
 #include <openssl/md5.h>