summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/no_size_t_is_usize.h
blob: d4370baf9f9cb1c5bd8b008608f5c897ec254f00 (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --no-size_t-is-usize

typedef unsigned long size_t;
typedef long ssize_t;

struct A {
  size_t len;
  ssize_t offset;
  struct A* next;
};