]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/chipmunk/chipmunk.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / extra / chipmunk / chipmunk.factor
index a7cd5e0fd2676f65299ef8746c863e4a861fd927..b24232147c5d2bf667315a5a87db6d6fcfd0b60a 100644 (file)
@@ -41,7 +41,7 @@ FUNCTION: cpVect cpvslerp ( cpVect v1, cpVect v2, cpFloat t ) ;
 FUNCTION: cpVect cpvslerpconst ( cpVect v1, cpVect v2, cpFloat a ) ;
 FUNCTION: cpVect cpvforangle ( cpFloat a ) ;
 FUNCTION: cpFloat cpvtoangle ( cpVect v ) ;
-FUNCTION: char* cpvstr ( cpVect v ) ;
+FUNCTION: c-string cpvstr ( cpVect v ) ;
 
 TYPED: cpvadd ( v1: cpVect v2: cpVect -- v3: cpVect )
     [ [ x>> ] bi@ + ]