Skip to content

Commit 548aeba

Browse files
committed
Stop using C headers
1 parent 49bceb2 commit 548aeba

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/util/ieee_float.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ Author: Daniel Kroening, [email protected]
88

99
#include "ieee_float.h"
1010

11-
// <cstdint> is yet to come
12-
#include <stdint.h>
13-
11+
#include <cstdint>
1412
#include <ostream>
1513
#include <cassert>
1614
#include <cmath>

src/util/pipe_stream.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Module: A stdin/stdout pipe as STL stream
2323
#else
2424
#include <sys/types.h>
2525
#include <sys/wait.h>
26-
#include <signal.h>
2726
#include <unistd.h>
2827
#include <cstring>
28+
#include <csignal>
2929
#endif
3030

3131
#define READ_BUFFER_SIZE 1024

0 commit comments

Comments
 (0)