diff options
author | Sven Gothel <[email protected]> | 2014-01-26 00:34:45 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-01-26 00:34:45 +0100 |
commit | 2b5522690722cb3b02a4b2aced6e4bd7b2f82dfe (patch) | |
tree | 44310a515a3aa77b55ff61bb4c2d230bf788f6f7 /make/joal-alc-impl-CustomCCode.c | |
parent | 23183ccf782c0252957c8d9cf2b51f70b9815acf (diff) |
Build: Move gluegen config files into make/config (cleanup)
Diffstat (limited to 'make/joal-alc-impl-CustomCCode.c')
-rwxr-xr-x | make/joal-alc-impl-CustomCCode.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/make/joal-alc-impl-CustomCCode.c b/make/joal-alc-impl-CustomCCode.c deleted file mode 100755 index 9207210..0000000 --- a/make/joal-alc-impl-CustomCCode.c +++ /dev/null @@ -1,16 +0,0 @@ -int strlen_alc(ALCdevice *device, int param, const char* str) { - int len = 0; - if ((device == NULL) && (param == ALC_DEVICE_SPECIFIER)) { - while (*str != 0) { - while (*str != 0) { - ++str; - ++len; - } - ++str; - ++len; - } - return len; - } else { - return strlen(str); - } -} |