Skip to content

Commit

Permalink
Add missing includes cstdint and sys/select.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ali1234 committed Apr 30, 2024
1 parent 19bcbd8 commit a8b181d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packetServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#else
#include <fcntl.h>
#include <sys/socket.h> /* for socket(), bind(), and connect() */
#include <sys/select.h> /* for fd_set() */
#include <arpa/inet.h> /* for sockaddr_in and inet_ntoa() */
#include <unistd.h> /* for close() */
#endif
Expand Down
1 change: 1 addition & 0 deletions ttxline.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#ifndef TTXLINE_H
#define TTXLINE_H
#include <cstdint>
#include <iostream>
#include <iomanip>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions ttxpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <fstream>
#include <string>

#include <cstdint>
#include <cstdlib>
#include <iomanip>

Expand Down

0 comments on commit a8b181d

Please sign in to comment.