Skip to content

Instantly share code, notes, and snippets.

@ilansmith
Last active October 27, 2017 22:45
Show Gist options
  • Save ilansmith/452cd02ed5f9ce2a1cda to your computer and use it in GitHub Desktop.
Save ilansmith/452cd02ed5f9ce2a1cda to your computer and use it in GitHub Desktop.
Everything macro
/* How to return a value from a macro */
#define FUNC(num1, num2) ({ \
int __ret; \
do { \
__ret = (num1) < (num2) ? 0 : 1; \
} while (0); \
__ret; \
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment