diff options
author | ngie <ngie@FreeBSD.org> | 2016-12-28 06:16:55 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-12-28 06:16:55 +0000 |
commit | 329f846ff85896e0d6ae8eb79c5df66e9880868f (patch) | |
tree | 92f345f9fb288a312abd04bd34653143c2f91ae7 | |
parent | 90e24b41c331b10ab6cfab854b12954f71d6c9f4 (diff) | |
download | FreeBSD-src-329f846ff85896e0d6ae8eb79c5df66e9880868f.zip FreeBSD-src-329f846ff85896e0d6ae8eb79c5df66e9880868f.tar.gz |
MFstable/11 r310672:
MFC r310499:
Sort #includes
No functional change
-rw-r--r-- | contrib/bsnmp/lib/snmp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/bsnmp/lib/snmp.c b/contrib/bsnmp/lib/snmp.c index 6b9e3e8..5354443 100644 --- a/contrib/bsnmp/lib/snmp.c +++ b/contrib/bsnmp/lib/snmp.c @@ -38,19 +38,19 @@ */ #include <sys/types.h> #include <sys/socket.h> +#include <ctype.h> +#include <errno.h> +#include <netdb.h> #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <stdarg.h> +#include <string.h> #ifdef HAVE_STDINT_H #include <stdint.h> #elif defined(HAVE_INTTYPES_H) #include <inttypes.h> #endif -#include <string.h> -#include <ctype.h> -#include <netdb.h> -#include <errno.h> #include "asn1.h" #include "snmp.h" |