]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/openal/alut/macosx/macosx.factor
Remove usages of <void*> and *void*
[factor.git] / extra / openal / alut / macosx / macosx.factor
index e6e8898b93e9174725ccffbea423f5dc33a0cd8b..5380930dd17a29e6965909fcd99ce213387633fa 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 <ref> f <void*> 0 int <ref> 0 int <ref>
+    0 int <ref> f void* <ref> 0 int <ref> 0 int <ref>
     [ alutLoadWAVFile ] 4 nkeep
-    [ [ [ int deref ] dip *void* ] dip int deref ] dip int deref ;
+    [ [ [ int deref ] dip void* deref ] dip int deref ] dip int deref ;