Use <netinet/in.h> for htonl

diff --git a/utils/fstype.c b/utils/fstype.c
index 743e449..c51fc93 100644
--- a/utils/fstype.c
+++ b/utils/fstype.c
@@ -11,12 +11,12 @@
  *
  * MINIX, ext3 and Reiserfs bits are currently untested.
  */
+
 #include <sys/types.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
-
-#include <asm/byteorder.h>
+#include <netinet/in.h>
 
 #include <linux/romfs_fs.h>
 #include <linux/cramfs_fs.h>
@@ -32,8 +32,6 @@
  */
 #include "reiserfs_fs.h"
 
-#define htonl __cpu_to_be32
-
 char *progname;
 
 #define ARRAY_SIZE(x)	(sizeof(x) / sizeof(x[0]))