diff options
author | Nathan Binkert <nate@binkert.org> | 2011-04-15 10:44:06 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2011-04-15 10:44:06 -0700 |
commit | 39a055645f77e0fa7bf49406635dba6bd65e361f (patch) | |
tree | a7df44358c75ff2de6e6f1549755f72cddb7d735 /util/term | |
parent | 50fda09ac79b2dc1aa31fbced8d19b23d683fbab (diff) | |
download | gem5-39a055645f77e0fa7bf49406635dba6bd65e361f.tar.xz |
includes: sort all includes
Diffstat (limited to 'util/term')
-rw-r--r-- | util/term/term.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/util/term/term.c b/util/term/term.c index 54924c0e1..ca88ad47e 100644 --- a/util/term/term.c +++ b/util/term/term.c @@ -26,17 +26,16 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/types.h> +#include <arpa/telnet.h> +#include <netinet/in.h> #include <sys/socket.h> #include <sys/termios.h> #include <sys/time.h> +#include <sys/types.h> #include <sys/un.h> - -#include <netinet/in.h> -#include <arpa/telnet.h> - #include <err.h> #include <errno.h> +#include <fcntl.h> #include <netdb.h> #include <poll.h> #include <stdarg.h> @@ -44,7 +43,6 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <fcntl.h> ssize_t atomicio(ssize_t (*)(), int, void *, size_t); void readwrite(int); |