From 4f8d095f5ac93d6b1fef54649eae1db2d11b4f65 Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Sun, 19 Dec 2021 21:31:58 +0330 Subject: [PATCH] LibC: Sort the SOURCES entries in CMakeLists.txt --- Userland/Libraries/LibC/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibC/CMakeLists.txt b/Userland/Libraries/LibC/CMakeLists.txt index 746f25409b..742b1bf70d 100644 --- a/Userland/Libraries/LibC/CMakeLists.txt +++ b/Userland/Libraries/LibC/CMakeLists.txt @@ -44,7 +44,6 @@ set(LIBC_SOURCES string.cpp strings.cpp stubs.cpp - syslog.cpp sys/auxv.cpp sys/file.cpp sys/mman.cpp @@ -52,10 +51,11 @@ set(LIBC_SOURCES sys/ptrace.cpp sys/select.cpp sys/socket.cpp + sys/statvfs.cpp sys/uio.cpp sys/wait.cpp - sys/statvfs.cpp sys/xattr.cpp + syslog.cpp termcap.cpp termios.cpp time.cpp