rename all iostream source to io_*.c

cute-signatures
Timo Teräs 2020-02-14 13:53:29 +02:00
parent 60b87557e5
commit 6d11ec36e6
4 changed files with 7 additions and 6 deletions

View File

@ -31,9 +31,10 @@ apk-objs := apk.o \
app_index.o app_fetch.o app_verify.o app_dot.o \
app_audit.o
libapk.so-objs := common.o database.o package.o archive.o \
version.o io.o url.o gunzip.o blob.o hash.o print.o \
commit.o solver.o
libapk.so-objs := common.o database.o package.o commit.o solver.o \
version.o blob.o hash.o print.o \
io.o io_url.o io_gunzip.o io_archive.o
libapk.so-libs := libfetch/libfetch.a
ifeq ($(TEST),y)

View File

@ -1,4 +1,4 @@
/* archive.c - Alpine Package Keeper (APK)
/* io_archive.c - Alpine Package Keeper (APK)
*
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>

View File

@ -1,4 +1,4 @@
/* gunzip.c - Alpine Package Keeper (APK)
/* io_gunzip.c - Alpine Package Keeper (APK)
*
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>
* All rights reserved.

View File

@ -1,4 +1,4 @@
/* url.c - Alpine Package Keeper (APK)
/* io_url.c - Alpine Package Keeper (APK)
*
* Copyright (C) 2005-2008 Natanael Copa <n@tanael.org>
* Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi>