repo.or.cz
/
newos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix this debug printf
[newos.git]
/
include
/
endian.h
blob
813d3fbbe4bb6b2d3b0e664838b961f13275e3a5
1
/*
2
** Copyright 2004, Travis Geiselbrecht. All rights reserved.
3
** Distributed under the terms of the NewOS License.
4
*/
5
#ifndef _ENDIAN_H
6
#define _ENDIAN_H
7
8
#define LITTLE_ENDIAN 1234
9
#define BIG_ENDIAN 4321
10
11
#include <arch/endian.h>
12
13
#endif