aboutsummaryrefslogtreecommitdiffstats
path: root/zahl.h
diff options
context:
space:
mode:
Diffstat (limited to 'zahl.h')
-rw-r--r--zahl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/zahl.h b/zahl.h
index e2634a8..c39510f 100644
--- a/zahl.h
+++ b/zahl.h
@@ -9,12 +9,15 @@
+/* You should pretend like this typedef does not exist. */
+typedef uint32_t zahl_char_t;
+
/* This structure should be considered opaque. */
typedef struct {
int sign;
size_t used;
size_t alloced;
- uint32_t *chars;
+ zahl_char_t *chars;
} z_t[1];