diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-16 14:56:36 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-17 02:32:35 +0100 |
commit | cef6d34aa02698ec2a173bdc6f42ae979ac08cd9 (patch) | |
tree | f6dae656f71e5316883ebdfbae5dc3f44803cdd8 /Makefrag.am | |
parent | ad51c68171cb6a1cae15c61ca0218bbee2c05485 (diff) | |
download | gnumach-cef6d34aa02698ec2a173bdc6f42ae979ac08cd9.tar.gz gnumach-cef6d34aa02698ec2a173bdc6f42ae979ac08cd9.tar.bz2 gnumach-cef6d34aa02698ec2a173bdc6f42ae979ac08cd9.zip |
Implement our own functions to convert between host and network values
We add htonl, ntohl and ntohs which were the last symbols we relied on
from libc.
The Makefile.am file was updated to reflect the fact that we only require libgcc.
Message-Id: <Y5zNdOJ/YnyYCOhX@mars>
Diffstat (limited to 'Makefrag.am')
-rw-r--r-- | Makefrag.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefrag.am b/Makefrag.am index 51b15260..e2593c42 100644 --- a/Makefrag.am +++ b/Makefrag.am @@ -244,7 +244,9 @@ libkernel_a_SOURCES += \ util/putchar.h \ util/puts.c \ util/atoi.c \ - util/atoi.h + util/atoi.h \ + util/byteorder.h \ + util/byteorder.c # # Virtual memory implementation. |