You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

builtins.x.h 243B

12345678910
  1. // X macro: Define a macro named X, then include this file, then undef X.
  2. #ifdef X
  3. X("+", l2_builtin_add);
  4. X("-", l2_builtin_sub);
  5. X("*", l2_builtin_mul);
  6. X("/", l2_builtin_div);
  7. X("print", l2_builtin_print);
  8. X("len", l2_builtin_len);
  9. #endif