summaryrefslogtreecommitdiff
path: root/src/c_asndfile.c
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-10-08 16:47:13 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-10-08 16:47:13 +1300
commit3181961ad2eefb3a6d9151db99661411792d4097 (patch)
tree30cd06dc02cda116f146bd43b42a7132a150faf2 /src/c_asndfile.c
parent79c1381d198f5b4ae1b75210971a8ccea1049bad (diff)
Changed System.Address to Integer_Address
Diffstat (limited to 'src/c_asndfile.c')
-rw-r--r--src/c_asndfile.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/c_asndfile.c b/src/c_asndfile.c
index 116fa0c..5424c91 100644
--- a/src/c_asndfile.c
+++ b/src/c_asndfile.c
@@ -105,6 +105,10 @@ const int err_malformed_file = SF_ERR_MALFORMED_FILE;
const int err_unsupported_encoding = SF_ERR_UNSUPPORTED_ENCODING;
+size_t c_pointer_size() {
+ return sizeof(void*);
+}
+
SNDFILE * asf_open(const char * path, int mode, Asf_Info * sfinfo) {
SF_INFO actual;