diff options
author | Christopher Faylor <me@cgf.cx> | 2005-05-19 19:44:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-05-19 19:44:31 +0000 |
commit | 071f64d93433fddcd1cb39bcaa1d08e5a8d97c48 (patch) | |
tree | 5aaf04e506e8bb6ea5e7e252cb86bc1648ab8b23 /winsup | |
parent | 424946e8abac3f77430e50cf8f72f85edcd0f895 (diff) | |
download | cygnal-071f64d93433fddcd1cb39bcaa1d08e5a8d97c48.tar.gz cygnal-071f64d93433fddcd1cb39bcaa1d08e5a8d97c48.tar.bz2 cygnal-071f64d93433fddcd1cb39bcaa1d08e5a8d97c48.zip |
* include/endian.h: New file.
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/include/endian.h | 17 |
2 files changed, 21 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index b1f48381c..43c709937 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2005-05-19 Christopher Faylor <cgf@timesys.com> + + * include/endian.h: New file. + 2005-05-19 Corinna Vinschen <corinna@vinschen.de> * cygwin.sc: Add Dwarf-2 debug sections. diff --git a/winsup/cygwin/include/endian.h b/winsup/cygwin/include/endian.h new file mode 100644 index 000000000..a54326158 --- /dev/null +++ b/winsup/cygwin/include/endian.h @@ -0,0 +1,17 @@ +/* io.h + + Copyright 2005 Red Hat, Inc. + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _ENDIAN_H_ +#define _ENDIAN_H_ + +#include <machine/endian.h> + +#endif /* _IO_H_ */ + |