Fold conv package into fmt

Both packages had nearly identical dependency requirements, so merging
them should help reduce the complexity of the build graph.
This commit is contained in:
Justine Tunney
2020-12-09 15:04:54 -08:00
parent 978b7858f9
commit 1fc91f3580
203 changed files with 352 additions and 563 deletions

View File

@@ -42,7 +42,7 @@
#include "libc/mem/mem.h"
#include "libc/fmt/fmt.h"
#include "libc/math.h"
#include "libc/conv/conv.h"
#include "libc/fmt/conv.h"
#include "flexdef.h"
/* Take note: The buffer object is sometimes used as a String buffer (one

View File

@@ -60,7 +60,6 @@ THIRD_PARTY_LEX_DIRECTDEPS = \
LIBC_ALG \
LIBC_CALLS \
LIBC_CALLS_HEFTY \
LIBC_CONV \
LIBC_FMT \
LIBC_LOG \
LIBC_MATH \

View File

@@ -50,7 +50,7 @@ asm(".include \"third_party/lex/COPYING\"");
#include "libc/str/str.h"
#include "libc/mem/mem.h"
#include "libc/math.h"
#include "libc/conv/conv.h"
#include "libc/fmt/conv.h"
#include "libc/log/log.h"
#include "libc/runtime/gc.h"
#include "libc/x/x.h"

View File

@@ -31,7 +31,7 @@
#include "libc/str/str.h"
#include "libc/mem/mem.h"
#include "libc/fmt/fmt.h"
#include "libc/conv/conv.h"
#include "libc/fmt/conv.h"
#include "flexdef.h"

View File

@@ -39,7 +39,7 @@
#include "flexdef.h"
#include "libc/str/str.h"
#include "libc/conv/conv.h"
#include "libc/fmt/conv.h"
#include "libc/mem/mem.h"
#include "libc/str/str.h"
#include "libc/str/str.h"

View File

@@ -1,7 +1,7 @@
/*-*- mode:c;indent-tabs-mode:t;c-basic-offset:8;tab-width:8;coding:utf-8 -*-│
│vi: set et ft=c ts=8 sw=8 fenc=utf-8 :vi│
└─────────────────────────────────────────────────────────────────────────────*/
#include "libc/conv/conv.h"
#include "libc/fmt/conv.h"
#include "libc/mem/mem.h"
#include "libc/sock/sock.h"
#include "libc/str/str.h"