Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2001-03-27  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/ieee754/dbl-64/endian.h: Removed.  Move definitions...
	* include/endian.h: ...to here.
  • Loading branch information
Ulrich Drepper committed Mar 27, 2001
1 parent 6e3794e commit 325a39c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2001-03-27 Ulrich Drepper <drepper@redhat.com>

* sysdeps/ieee754/dbl-64/endian.h: Removed. Move definitions...
* include/endian.h: ...to here.

2001-03-27 kaz Kojima <kkojima@rr.iij4u.or.jp>

* sysdeps/sh/sys/ucontext.h (NFREG): Rename to NFPREG.
Expand Down
14 changes: 14 additions & 0 deletions include/endian.h
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
#include <string/endian.h>

#if __FLOAT_WORD_ORDER == __BIG_ENDIAN
#define BIG_ENDI 1
#undef LITTLE_ENDI
#define HIGH_HALF 0
#define LOW_HALF 1
#else
#if __FLOAT_WORD_ORDER == __LITTLE_ENDIAN
#undef BIG_ENDI
#define LITTLE_ENDI 1
#define HIGH_HALF 1
#define LOW_HALF 0
#endif
#endif
15 changes: 0 additions & 15 deletions sysdeps/ieee754/dbl-64/endian.h

This file was deleted.

0 comments on commit 325a39c

Please sign in to comment.