From c69b5fc34dcffd4564231313812d3b15e6f6fc99 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 00:13:23 +0200 Subject: [PATCH] Move pwd.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => pwd}/pwent.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => pwd}/pwent.cpp (99%) diff --git a/libc/Makefile b/libc/Makefile index 48f33d16..7b40e2ee 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -294,7 +294,7 @@ preadv.o \ print.o \ psignal.o \ putc.o \ -pwent.o \ +pwd/pwent.o \ pwritev.o \ raise.o \ readdirents.o \ diff --git a/libc/pwent.cpp b/libc/pwd/pwent.cpp similarity index 99% rename from libc/pwent.cpp rename to libc/pwd/pwent.cpp index a24a078f..6273471b 100644 --- a/libc/pwent.cpp +++ b/libc/pwd/pwent.cpp @@ -17,7 +17,7 @@ You should have received a copy of the GNU Lesser General Public License along with the Sortix C Library. If not, see . - pwent.cpp + pwd/pwent.cpp User database. *******************************************************************************/