2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[1452] use cxxx instead xxx.h as much as possible

This commit is contained in:
JINMEI Tatuya
2011-12-16 10:55:30 -08:00
parent 1a05959b27
commit a27ddbc73f
2 changed files with 7 additions and 5 deletions

View File

@@ -19,13 +19,14 @@
#include <netinet/in.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdint.h>
#include <string.h>
#include <cerrno>
#include <csignal>
#include <cstring>
#include <cassert>
#include <string>
#include <vector>

View File

@@ -16,12 +16,13 @@
#include <sys/socket.h>
#include <sys/un.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <netdb.h>
#include <unistd.h>
#include <cerrno>
#include <cstring>
#include <string>
#include <utility>
#include <vector>