Skip to content

Commit

Permalink
Remove unnecessary include files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadliaJerad committed Jun 2, 2023
1 parent 161e732 commit 3870e01
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions core/federated/RTI/rti_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,17 @@
#ifndef RTI_LIB_H
#define RTI_LIB_H

#include <stdio.h>
#include <stdlib.h>
#include <errno.h> // Defines perror(), errno
#include <sys/socket.h>
#include <sys/types.h> // Provides select() function to read from multiple sockets.
#include <netinet/in.h> // Defines struct sockaddr_in
#include <arpa/inet.h> // inet_ntop & inet_pton
#include <unistd.h> // Defines read(), write(), and close()
#include <netdb.h> // Defines gethostbyname().
#include <strings.h> // Defines bzero().
#include <assert.h>
#include <sys/wait.h> // Defines wait() for process to change state.

#include "platform.h" // Platform-specific types and functions
#include "util.h" // Defines print functions (e.g., lf_print).
#include "util.h" // Defines print functions (e.g., lf_print).
#include "net_util.h" // Defines network functions.
#include "net_common.h" // Defines message types, etc. Includes <pthread.h> and "reactor.h".
#include "tag.h" // Time-related types and functions.
Expand Down

0 comments on commit 3870e01

Please sign in to comment.