Created
August 13, 2011 14:40
-
-
Save smcl/1143911 to your computer and use it in GitHub Desktop.
Where I'm adding my malicious preprocessor macro in grep
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Removed the GPL notice. Hopefully RMS won't come after me... */ | |
#ifndef GREP_GREP_H | |
#define GREP_GREP_H 1 | |
/* Sean's changes go here */ | |
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6) || __STRICT_ANSI__ | |
# define __attribute__(x) | |
#endif | |
/* ... */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment