Last active
March 31, 2016 23:46
-
-
Save bbkr/19ba6903358445410812bc09b0c0ec9c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use NativeCall; | |
unit module Foo; | |
my sub f1 () is native('libwhatever') { * } | |
my sub f2 (int) is native('libwhatever') { * } | |
my sub f3 (int, int) is native('libwhatever') { * } | |
my sub f4 (int, int, int) is native('libwhatever') { * } | |
my sub f5 (int, int, int, int) is native('libwhatever') { * } | |
my sub f6 (int, int, int, int, int) is native('libwhatever') { * } | |
my sub f7 (int, int, int, int, int, int) is native('libwhatever') { * } | |
my sub f8 (int, int, int, int, int, int, int) is native('libwhatever') { * } | |
my sub f9 (int, int, int, int, int, int, int, int) is native('libwhatever') { * } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment