Rename libc/aux to libc/c++.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-07-27 16:46:57 +02:00
parent d8201c007a
commit fac70d5119
3 changed files with 5 additions and 6 deletions

View File

@ -16,8 +16,8 @@ ASFLAGS=
FREEOBJS=\
assert/__assert.o \
aux/c++.o \
aux/op-new.o \
c++/c++.o \
c++/op-new.o \
ctype/isalnum.o \
ctype/isalpha.o \
ctype/isascii.o \

View File

@ -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 <http://www.gnu.org/licenses/>.
aux/c++.cpp
c++/c++.cpp
Implements required C++ stuff for use in the Sortix kernel.
*******************************************************************************/

View File

@ -17,9 +17,8 @@
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/>.
aux/op-new.cpp
C++ allocation operators. This is a hack to work around that libstdc++ is
yet to be integrated into Sortix.
c++/op-new.cpp
C++ allocation operators.
*******************************************************************************/