summaryrefslogtreecommitdiff
path: root/dosfstools/src/endian.c
blob: f07baaa12225c7c92aea129fde14609640e2082b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/types.h>
#include <asm/types.h>

__u16 le16toh(__u16 le)
{
	return le;
}

__u32 le32toh(__u32 le)
{
	return le;
}