Skip to content

Commit

Permalink
test: include missing string.h header in System.hpp
Browse files Browse the repository at this point in the history
The header contains strerror definition used in this file. Along the
way, the headers in System.hpp are sorted.
  • Loading branch information
drewdzzz committed Jan 30, 2024
1 parent c3d1d8a commit adf1975
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/Utils/System.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@
*/
#include <arpa/inet.h>
#include <netinet/in.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <signal.h>
#include <unistd.h>
#ifdef __linux__
#include <sys/prctl.h>
#endif
Expand Down

0 comments on commit adf1975

Please sign in to comment.