diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2021-01-02 19:39:59 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2021-01-02 19:39:59 +0300 |
commit | cff0c84f6b14f37497ff22c54948380af64e8106 (patch) | |
tree | 2acf23d98b0f9681d5f42346230538aa684a527b /include | |
parent | 0c32a26c9a43b2d45968b9ac59b8916c1d4092d1 (diff) | |
download | csx-cff0c84f6b14f37497ff22c54948380af64e8106.tar csx-cff0c84f6b14f37497ff22c54948380af64e8106.tar.xz csx-cff0c84f6b14f37497ff22c54948380af64e8106.zip |
It's alive.
Diffstat (limited to 'include')
-rw-r--r-- | include/csx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/csx.h b/include/csx.h index 90d18c2..836ee6a 100644 --- a/include/csx.h +++ b/include/csx.h @@ -10,7 +10,7 @@ int *csx_num(int num); void *csx_eval(void *expression); -typedef void *(csx_base_data)(void *arg); +typedef void *(*csx_base_data)(void *arg); void *csx_base(csx_base_data base); char *csx_name(const char *name); |