Move auxiliary libc files into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-25 12:35:18 +02:00
parent 9e6cfc3e13
commit 59b28682b4
4 changed files with 4 additions and 4 deletions

View File

@ -18,8 +18,9 @@ ASFLAGS=
FREEOBJS=\ FREEOBJS=\
assert/_assert.o \ assert/_assert.o \
aux/c++.o \
aux/op-new.o \
clearerr.o \ clearerr.o \
c++.o \
ctype/ctype.o \ ctype/ctype.o \
dirent/alphasort.o \ dirent/alphasort.o \
dirent/dir.o \ dirent/dir.o \
@ -63,7 +64,6 @@ fwrite.o \
fwriting.o \ fwriting.o \
getdelim.o \ getdelim.o \
getline.o \ getline.o \
op-new.o \
rewind.o \ rewind.o \
setbuf.o \ setbuf.o \
setvbuf.o \ setvbuf.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/>.
c++.cpp aux/c++.cpp
Implements required C++ stuff for use in the Sortix kernel. Implements required C++ stuff for use in the Sortix kernel.
*******************************************************************************/ *******************************************************************************/

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/>.
op-new.cpp aux/op-new.cpp
C++ allocation operators. C++ allocation operators.
*******************************************************************************/ *******************************************************************************/

0
libc/sortix/aux/.gitignore vendored Normal file
View File