]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/openal/alut/macosx/macosx.factor
Remove many uses of <int> and *int etc
[factor.git] / extra / openal / alut / macosx / macosx.factor
index 54439b762ca2f34f935041286e094ac89c0dd53f..e6e8898b93e9174725ccffbea423f5dc33a0cd8b 100755 (executable)
@@ -9,6 +9,6 @@ LIBRARY: alut
 FUNCTION: void alutLoadWAVFile ( c-string fileName, ALenum* format, void** data, ALsizei* size, ALsizei* frequency ) ;
 
 M: macosx load-wav-file ( path -- format data size frequency )
-    0 <int> f <void*> 0 <int> 0 <int>
+    0 int <ref> f <void*> 0 int <ref> 0 int <ref>
     [ alutLoadWAVFile ] 4 nkeep
-    [ [ [ *int ] dip *void* ] dip *int ] dip *int ;
+    [ [ [ int deref ] dip *void* ] dip int deref ] dip int deref ;