my_context.h 231 B

1234567891011
  1. /*
  2. * Copyright (C) 2023 Midokura Japan KK. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. struct my_context {
  6. int x;
  7. };
  8. extern void *my_context_key;
  9. extern struct my_context my_context;