Move libgen.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-24 23:07:11 +02:00
parent 7bec450367
commit 9c4f25ae7c
3 changed files with 4 additions and 4 deletions

View File

@ -168,7 +168,6 @@ arpa/inet/inet_addr.o \
arpa/inet/inet_ntoa.o \ arpa/inet/inet_ntoa.o \
arpa/inet/inet_ntop.o \ arpa/inet/inet_ntop.o \
arpa/inet/inet_pton.o \ arpa/inet/inet_pton.o \
basename.o \
calltrace.o \ calltrace.o \
canonicalize_file_name_at.o \ canonicalize_file_name_at.o \
canonicalize_file_name.o \ canonicalize_file_name.o \
@ -186,7 +185,6 @@ $(CPUDIR)/syscall.o \
creat.o \ creat.o \
dirent/fddir-sortix.o \ dirent/fddir-sortix.o \
dirent/scandir.o \ dirent/scandir.o \
dirname.o \
dispmsg_issue.o \ dispmsg_issue.o \
dlfcn.o \ dlfcn.o \
dup2.o \ dup2.o \
@ -257,6 +255,8 @@ isatty.o \
kernelinfo.o \ kernelinfo.o \
kill.o \ kill.o \
lchown.o \ lchown.o \
libgen/basename.o \
libgen/dirname.o \
linkat.o \ linkat.o \
link.o \ link.o \
localeconv.o \ localeconv.o \

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
basename.cpp libgen/basename.cpp
Returns the name part of a path. Returns the name part of a path.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
dirname.cpp libgen/dirname.cpp
Returns the directory part of a path. Returns the directory part of a path.
*******************************************************************************/ *******************************************************************************/