Skip to content

Commit

Permalink
Update cython expectations from the previous patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed May 29, 2024
1 parent 785e066 commit 3cbb637
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions tests/expectations/va_list_tag.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,18 @@ cdef extern from *:

ctypedef int32_t (*VaListFnPtr)(int32_t count, ...);

ctypedef int32_t (*VaListFnPtr2)(int32_t count);
ctypedef int32_t (*VaListFnPtr2)(int32_t count, ...);

cdef struct Interface_______i32_______i32_______va_list:
int32_t (*fn1)(int32_t count, ...);

cdef struct Interface_______i32_______i32:
int32_t (*fn1)(int32_t count);

int32_t va_list_test(int32_t count, ...);

int32_t va_list_test2(int32_t count, ...);

void va_list_fn_ptrs(int32_t (*fn1)(int32_t count, ...),
int32_t (*fn2)(int32_t count),
int32_t (*fn2)(int32_t count, ...),
VaListFnPtr fn3,
VaListFnPtr2 fn4,
Interface_______i32_______i32_______va_list fn5,
Interface_______i32_______i32 fn6);
Interface_______i32_______i32_______va_list fn6);

0 comments on commit 3cbb637

Please sign in to comment.