scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit dcbbe9b3e64a07b1979363c71637d3e72a65a19e
parent 8475094bf2b26b40e5884dbe790222dc904fd217
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun,  6 Nov 2022 14:41:51 +0100

libc/stdlib: Add div functions to the Makefile

They were forgotten in a previous commit.

Diffstat:
Msrc/libc/stdlib/Makefile | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/libc/stdlib/Makefile b/src/libc/stdlib/Makefile @@ -15,8 +15,11 @@ OBJS =\ calloc.$O\ errno.$O\ exit.$O\ + div.$O\ labs.$O\ + ldiv.$O\ llabs.$O\ + lldiv.$O\ malloc.$O\ mblen.$O\ mbtowc.$O\