shithub: scc

Download patch

ref: 656c7dc0148256118fbc70cb19f9f8ce264ac542
parent: a06125b256611ed9a97f7b1664beff5a6d27c52f
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Wed Dec 6 17:55:54 EST 2017

[lib/c] Change order of objects in the Makefile

This make easier to link without having an index in the
library.

--- a/lib/c/src/Makefile
+++ b/lib/c/src/Makefile
@@ -2,7 +2,12 @@
 
 include ../../../config.mk
 
-OBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o \
+OBJ = bsearch.o \
+      printf.o fprintf.o vfprintf.o \
+      fgets.o gets.of fgetc.o fputc.o getchar.o putchar.o \
+      fputs.o puts.o fread.o fwrite.o \
+      realloc.o calloc.o malloc.o \
+      assert.o strcpy.o strcmp.o strlen.o strchr.o \
       strrchr.o strcat.o strncmp.o strncpy.o strncat.o strcoll.o \
       strxfrm.o strstr.o strspn.o strcspn.o strpbrk.o strtok.o \
       memset.o memcpy.o memmove.o memcmp.o memchr.o \
@@ -9,11 +14,6 @@
       isalnum.o isalpha.o isascii.o isblank.o iscntrl.o isdigit.o \
       isgraph.o islower.o isprint.o ispunct.o isspace.o isupper.o \
       isxdigit.o toupper.o tolower.o ctype.o setlocale.o \
-      bsearch.o \
-      printf.o fprintf.o vfprintf.o \
-      fgets.o gets.of fgetc.o fputc.o getchar.o putchar.o \
-      fputs.o puts.o fread.o fwrite.o \
-      realloc.o calloc.o malloc.o \
       localeconv.o atoi.o atol.o atoll.o atexit.o abort.o exit.o
 
 all: $(ARCH)-libc.a