diff options
| author | Tyge Løvset <[email protected]> | 2020-09-23 22:18:51 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-09-23 22:18:51 +0200 |
| commit | 31ec9ba3359864a780ac64f53acee33fb5cb2b5a (patch) | |
| tree | f54bbfad5196301457c5b4324c6b9780f489611d /stc/cstack.h | |
| parent | a0b1659baa898cd124a15b5f7c86670ca08277e5 (diff) | |
| download | STC-modified-31ec9ba3359864a780ac64f53acee33fb5cb2b5a.tar.gz STC-modified-31ec9ba3359864a780ac64f53acee33fb5cb2b5a.zip | |
Some internal restructuring. Added shared_ptr like struct type: csptr.h
Diffstat (limited to 'stc/cstack.h')
| -rw-r--r-- | stc/cstack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stc/cstack.h b/stc/cstack.h index 0351a545..37e8f3f3 100644 --- a/stc/cstack.h +++ b/stc/cstack.h @@ -49,7 +49,7 @@ #define using_cstack(X, ctype) \
\
- typedef struct ctype cstack_##X; \
+ typedef ctype##_t cstack_##X, cstack_##X##_t; \
typedef ctype##_value_t cstack_##X##_value_t; \
typedef ctype##_rawvalue_t cstack_##X##_rawvalue_t; \
typedef ctype##_input_t cstack_##X##_input_t; \
|
