vote up 52 vote down star
43

What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?

Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".


p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).


Bonus: Give an example where the macro was really was better than a not-macro solution.

Related question: When are C++ macros beneficial?

flag
6  
#define true false //happy debugging :) – n0rd Mar 17 at 11:36
1  
@Trevor Boyd Smith: "Community Wiki" is also good for questions like this which are very subjective. "Best" or "Worst" can often vary based on one's opinion, so a community wiki question of often better. – Josh Sep 20 at 20:32
show 6 more comments

60 Answers

1 2 next
vote up 183 vote down check

From memory, it looked something like this:

#define RETURN(result) return (result);}

int myfunction1(args) {
    int x = 0;
    // do something
    RETURN(x)

int myfunction2(args) {
    int y = 0;
    // do something
    RETURN(z)

int myfunction3(args) {
    int z = 0;
    // do something
    RETURN(z)

Yes that's right, no closing braces in any of the functions. Syntax highlighting was a mess, so he used vi to edit (not vim, it has syntax coloring!)

He was a Russian programmer who had mostly worked in assembly language. He was fanatical about saving as many bytes as possible because he had previously worked on systems with very limited memory. "It was for satellite. Only very few byte, so we use each byte over for many things." (bit fiddling, reusing machine instruction bytes for their numeric values) When I tried to find out what kinds of satellites, I was only able to get "Orbiting satellite. For making to orbit."

He had two other quirks: A convex mirror mounted above his monitor "For knowing who is watching", and an occasional sudden exit from his chair to do a quick ten pushups. He explained this last one as "Compiler found error in code. This is punishment".

link|flag
31  
"Compiler found error in code. This is punishment". !! Company found you ... punishment to the fellow employees ! – Learning Mar 17 at 6:40
83  
In Soviet Russia, program compiles YOU! – Crashworks Mar 17 at 8:03
22  
When I read about the compiler error "punishment", the first thing I thought of was "Dobby had to iron his hands". – Graeme Perrow Mar 19 at 13:09
52  
I think programmers (myself included) would be a lot more fit if we all did 10 pushups every time a compiler found an error in our code. This might also reduce the occurrence of testing by compilation. – MikeyB Jun 25 at 19:52
14  
Every time I look at this code I think it is Python – 1800 INFORMATION Aug 13 at 21:28
show 18 more comments
vote up 54 vote down
#define private public
link|flag
6  
wow for unit testing this might even be useful, even though the ghosts of object design will haunt you at night. – Epaga Mar 17 at 8:40
4  
Hmmm, undefined behavior, easy violation of the one-definition rule, potential layout differences. Yup, this is a winner. – David Thornley Jun 25 at 19:30
show 2 more comments
vote up 9 vote down

The worst one I saw was the non-use :-)

Someone wrote a strcpy (I think that was it... over 10 years ago now) function inside of a method (because they didn't want the overhead of calling strcpy... sigh).

They clued in that it wouldn't work for Japanese characters so they added an "if" at the start to do ASCII or Unicode. At that point the code was about a screen long... likely killing cache coherency and erasing his supposed savings for the inlining of the code.

The code was identical save for the types (so should have used a macro).

Of course the strcpy that they wrote was much much much slower than the hand tuned assembler one that was in the standard library...

Of course if they had just done it all as a macro it could have been replaced with a call to strcpy...

Of course I quit the company (not directly because of that...)

link|flag
vote up 76 vote down
#define ever (;;)
for ever { 
   ...
}
link|flag
8  
only if you're a valley girl – Joel Spolsky Mar 17 at 2:08
15  
I prefer <#define forever for(;;)> so you can write <forever {...}> – paxdiablo Mar 17 at 2:16
1  
Isn't Pax's suggestion straight from K&R? Still, not worth the effort, I'd say. – Jon Ericson Mar 17 at 2:30
2  
It is clever(tm) but I really kinda like how it reads. – vobject Jun 25 at 21:11
3  
@pZy: yeah it is very cl(EVER) – hayalci Jun 27 at 13:52
show 7 more comments
vote up 56 vote down

The hideous:

#define begin {
#define end }
/* and so on */

Seriously, if you want to code in Pascal, buy a Pascal compiler, don't destroy the beautiful C language.

link|flag
21  
Now you've got me wondering what languages I can simulate with a clever enough header file. – Bill the Lizard Mar 17 at 2:24
13  
LOLCODE - lolcode.com/contributions/lolcode_h – Chris Lutz Mar 17 at 5:14
24  
C is not beautiful. It's rather ugly. – rlbond Mar 17 at 5:38
12  
Its beauty lies in its simplicity. It's been said it has all the speed of assembly language combined with the readability of ... assembly language :-) I prefer it over the bloated C++ (although I do prefer Java in my day job due to its huge library). – paxdiablo Mar 17 at 6:02
4  
No really. Find Bourne's original source for the bourne shell. He did exactly this to get some kind of bastard ALGOL-like mess. – RBerteig Mar 17 at 6:27
show 9 more comments
vote up 9 vote down

One fairly bad example:

#ifdef __cplusplus
#define class _vclass
#endif

This allows a C structure that contains a member variable called class to be handled by a C++ compiler. There are two headers with this construct in it; one of them also contains '#undef class' at the end and the other doesn't.

link|flag
vote up 45 vote down

An 'architect', very humle guy, you know the type, had the following:

#define retrun return

because he liked to type fast. The brain-surgeon used to like to shout at people who were smarter than him (which was pretty much everyone), and threaten to use his black-belt on them.

link|flag
3  
rather teach your editor to autoreplace retrun into return. Ive done such hackeries to my IRC-client, at least – Tetha Mar 17 at 10:33
19  
Rather learn to type. – Svante Jun 25 at 20:17
show 2 more comments
vote up 2 vote down

When I first came across macros in C they had me stumped for days. Below is what I was faced with. I imagine it makes perfect sense to C experts and is super efficient however for me to try and work out what exactly was going on meant cutting and pasting all the different macros together until the whole function could be viewed. Surely that's not good practice?! What's wrong with using a plain old function?!

#define AST_LIST_MOVE_CURRENT(newhead, field) do { \
typeof ((newhead)->first) __list_cur = __new_prev; \
AST_LIST_REMOVE_CURRENT(field); \
AST_LIST_INSERT_TAIL((newhead), __list_cur, field); \
} while (0)
link|flag
show 1 more comment
vote up 153 vote down

My worst:

#define InterlockedIncrement(x) (x)++
#define InterlockedDecrement(x) (x)--

I spent two days of my life tracking down some multi-threaded COM ref-counting issue because some idiot put this in a header file. I won't mention the company I worked for at the time.

The moral of this story? If you don't understand something, read the documentation and learn about it. Don't just make it go away.

link|flag
8  
I wish I could vote this up twice. – Joshua Mar 17 at 4:27
52  
@Joshua: If you run this code in a multithreaded environment, you just might unintentionally do that – 1800 INFORMATION Mar 17 at 21:27
6  
"If you don't understand something, read the documentation and learn about it. Don't just make it go away." - AMEN! – Paul Alexander Jun 25 at 19:22
14  
rotfl... this one just made me splort milk outta my nose – Joel Spolsky Aug 13 at 21:09
9  
The problem is that InterlockedIncrement is normally an atomic function defined in the Windows API. So when people call InterlockedIncrement, they expect to call into a function that is guaranteed to be executed atomically. Instead, someone defined a macro with the same name, which evaluates to a plain, non-atomic increment – jalf Sep 20 at 21:08
show 8 more comments
vote up 4 vote down

The obligatory

#define FOR  for

and

#define ONE  1
#define TWO  2
...

Who knew?

link|flag
3  
But-but-but NO LITERALS IN CODE! ;) – Bernard Mar 17 at 11:03
1  
Never heard of that with COBOL, only with FORTRAN. COBOL, of course, has ZERO, ZEROS, and ZEROES as reserved words, all of them meaning the exact same thing as 0. – David Thornley Jun 25 at 19:34
show 2 more comments
vote up 10 vote down

The use of the LINE preprocessor to generate unique ID for messages passed over the network:

NetworkMessages.h

#define MSG_LOGIN  __LINE__
#define MSG_LOGOUT __LINE__
#define MSG_CHAT   __LINE__

This is an example where the macro really was better than a non-macro solution:

In a non-macro solution classes, functions and variables have to be built to keep track of what ID the message is. The developer may or may not make the message ID tracking complicated whereas this is easier to read and debug.

In addition, its easier to add new messages just by adding the message into the source.

The disadvantage of this situation is that the file has to be included in all code that uses messages. Compile time would increase whenever a message is edited.

link|flag
4  
And versions may be incompatible with each other (not good!). How come an enum didn't suffice? – strager Mar 17 at 3:19
5  
Now I come along and sort the #defines... and the protocol changes. Or I get the Doxygen religion and document all the message codes, and the protocol changes. At least an enum is stable under the latter change. – RBerteig Mar 17 at 6:33
show 3 more comments
vote up 27 vote down

Windows.h has a lot of functions that abused macros.


MrValdez is annoyed by the GetObject macro found in Windows.h

The GetObject macro changes the GetObject() function into GetObjectA() or GetObjectW() (depending if the build is compiled in non-unicode and unicode, respectively)

MrValdez hates having to do before the GetObject function line

#undef GetObject

Object *GetObject()

The alternative is to change the function name to something else like GetGameObject()


jdkoftinoff in the comments have nailed it: The problem is that all windows API functions are macros.

Adam Rosenfield mentioned that that the issues can be fixed by defining NOGDI, WIN32_LEAN_AND_MEAN, NOMINMAX, etc before including windows.h to remove the issues.

link|flag
2  
You can suppress this but #define'ing NOGDI before including windows.h, provided of course that you don't need to use any of the various GDI functions. There are a bunch of other macros such as WIN32_LEAN_AND_MEAN, NOMINMAX, etc. that suppress other things from being defined or included. – Adam Rosenfield Mar 17 at 3:10
1  
GetObject is a pretty generic function name. Perhaps you could have used a more descriptive name given the context to avoid the collision. However, that is a pretty evil macro case. – strager Mar 17 at 3:20
4  
Problem is that all windows API functions are macros. One that bit me was GetTickCount(). Since I do most of my programming outside of windows, I found all the defines in the windows headers and then made my own include file which defined them all to verify compatibility beforehand. – jdkoftinoff Mar 17 at 3:38
4  
I think we have a winner. It's real-world, it's a ridiculously bad idea, and it's affected a huge number of innocent programmers. Whoever is responsible for this gem at Microsoft should be considered a war criminal... The best part is that Microsoft didn't think twice about using such amazingly common names, like GetObject, SendMessage or CreateWindow. – jalf Aug 7 at 13:22
3  
I've never seen a community wiki answer work this well! – JasonFruit Aug 7 at 13:39
show 6 more comments
vote up 8 vote down

AI Game Programming Wisdom has a chapter where macros were used to create a scripting language for finite state machines.

Since the book and code are copyrighted material, here's a Google book link to the page detailing the macros (The resulting script language can be found on page 324.)

link|flag
3  
@MrValdez: Your abuse is someone else's brilliant masterpiece. :) – MikeyB Jun 25 at 20:00
show 2 more comments
vote up 1 vote down

Another piece of 'creative' use of the preprocessor, though it is more in the terminology employed than in the mechanics (which are incredibly mundane):

/***********************************************************************
 * OS2 and PCDOS share a lot of common codes.  However, sometimes
 * OS2 needs codes similar to those of UNIX.  NOTPCDOS is used in these
 * situations
 */

#ifdef OS2
#define PCDOS
#define NOTPCDOS
#else /* OS2 */
#ifndef PCDOS
#define NOTPCDOS
#endif /* PCDOS */
#endif /* OS2 */

Genuine code - I thought I'd removed it, but apparently not. I must have done so out in some temporary branch and not gotten permission to check it back into the main code. One more item for the 'to do' list.

link|flag
vote up 46 vote down
#define if while

It was joke played on someone, it wasn't found amusing by those affected

link|flag
8  
#define while if would be even more insidious. – starblue Mar 17 at 7:05
3  
We should clarify your statement. It wasn't found amusing by the people affected. :-) – Andrew Shepherd Jun 30 at 23:08
show 4 more comments
vote up 11 vote down
#include <iostream>
#define public_static_void_main(x) int main()
#define System_out_println(x) std::cout << x << std::endl

public_static_void_main(String[] args) {
  System_out_println("Hello World!");
}
link|flag
2  
@Trevor: Yeah... the smart ones are still doing Java instead. runs for cover – mmyers Mar 17 at 16:10
6  
I like the other one better. This one shows something close to Java being written with a few macros. The other one shows exact Java being written with a plethora of sneaky macros and structs with function members. The first one was a cheap joke, whereas the second one was an elaborate and well-though out joke. – Chris Lutz Jun 25 at 18:55
show 8 more comments
vote up 33 vote down

Raymond Chen has a really good rant against using flow control macros. His best example is straight from the original Bourne shell source code:

ADDRESS alloc(nbytes)
    POS     nbytes;
{
    REG POS rbytes = round(nbytes+BYTESPERWORD,BYTESPERWORD);

    LOOP    INT     c=0;
    REG BLKPTR  p = blokp;
    REG BLKPTR  q;
    REP IF !busy(p)
        THEN    WHILE !busy(q = p->word) DO p->word = q->word OD
    	IF ADR(q)-ADR(p) >= rbytes
    	THEN	blokp = BLK(ADR(p)+rbytes);
    	    IF q > blokp
    	    THEN    blokp->word = p->word;
    	    FI
    	    p->word=BLK(Rcheat(blokp)|BUSY);
    	    return(ADR(p+1));
    	FI
        FI
        q = p; p = BLK(Rcheat(p->word)&~BUSY);
    PER p>q ORF (c++)==0 DONE
    addblok(rbytes);
    POOL
}
link|flag
1  
Oh my god. I'm never using Bourne again. – Crashworks Mar 17 at 8:06
vote up 1 vote down

Good macros: (although personally I dislike the double parentheses required to use this syntax; I prefer either vararg macros (C99 only) or something like PRINTF_0, PRINTF_1, etc, depending on the number of arguments)

#ifdef DEBUG
#define PRINTF(x) printf x
#else
#define PRINTF(x)
#endif

Reduces code size / execution time (the first more than the second) for non-debug build; also prevents leaking debug text strings which may pose a smallish security risk

link|flag
show 6 more comments
vote up 55 vote down
#include <iostream>
#define System S s;s
#define public
#define static
#define void int
#define main(x) main()
struct F{void println(char* s){std::cout << s << std::endl;}};
struct S{F out;};

public static void main(String[] args) {
  System.out.println("Hello World!");
}

Challenge: Can anyone do it with fewer defines and structs? ;-)

link|flag
3  
you just wrote a java-to-c converter! horray! – Andreas Petersson Mar 17 at 8:10
9  
Reported as "offensive." (I kid!) – Adam Backstrom Mar 18 at 14:00
17  
That is either hideously beautiful or beautifully hideous. – Chris Lutz May 1 at 18:37
4  
I don't even get how this works :( – Mark Jun 26 at 0:16
10  
@Mark - It declares public and static as nothing, `void as int, and main(x) as main(), so public static void main(String[] args) turns into int main(). Then System turns into S s;s, so System.out.println("Hello World!"); turns into S s; s.out.println("Hello World!"); which calls the println function in the F struct in the S struct. – Chris Lutz Aug 9 at 2:15
show 6 more comments
vote up 1 vote down

Related to Raymond's rant is the following horrible (in my opinion, of course) macro:

#define CALL_AND_CHECK(func, arg) \
    int result = func(arg);       \
    if(0 != result)               \
    {                             \
        sys.exit(-1);             \
    }                             \

I was pretty new to the practice of using macros and used this macro, but I expected the function that I passed to it to fail. And I was doing it in a background thread, so it stumped me for days why my entire app was "crashing".

As an aside, if only std::tr1::function was around when this macro was written, I would have a week of my life back!

link|flag
show 1 more comment
vote up 0 vote down

Found in declarations, to much confusion:

NON_ZERO_BYTE         Fixed(8)  Constant('79'X),

Found later:

IF WORK_AREA(INDEX) = ZERO_BYTE THEN  /* found zero byte */ 
   WORK_AREA(INDEX) = NON_ZERO_BYTE ; /* reset to nonzero*/
link|flag
vote up 1 vote down

The worst abuses (and I'm guilty of doing this occasionally) is using the preprocessor as some sort of data file replacement, ie:

#define FOO_RELATION \  
BAR_TUPLE( A, B, C) \  
BAR_TUPLE( X, Y, Z) \

and then somewhere else:

#define BAR_TUPLE( p1, p2, p3) if( p1 ) p2 = p3;
FOO_RELATION
#undef BAR_TUPLE

which will result in:

if( A ) B = C;
if( X ) Y = Z;

This pattern can be used to do all sorts of (terrible) stuff... generate switch statements or huge if else blocks, or interface with "real" code. You could even use it to ::cough:: generate a context menu in a non-oo context menu system ::cough::. Not that I'd ever do anything so lame.

Edit: fixed mismatched parenthesis and expanded example

link|flag
show 3 more comments
vote up 19 vote down

The worst I've ever encountered was in a product containing a suite of executables where the designated technical leader hadn't figured out libraries.

Instead, he had sets of files that were shared in several Visual Source Safe folders. He then realised they needed to behave slightly differently for each application.

There's a number of refactoring steps you could apply here.

Instead, he used #ifdefs

   void DisplayLoadError()
   {
   #if defined __TIMETABLE_EDITOR
   MessageBox("Timetable Editor failed to load the correct timetable", MB_ERROR);
   #else if defined __SCHEDULESET_EDITOR
   MessageBox("Schedule Set Editor faied to load the correct Schedule Set", MB_ERROR);
   #else if defined __ROSTER_EDITOR
   MessageBox("Roster Editor failed to load the correct Roster", MB_ERROR);
   #endif
   }
link|flag
show 2 more comments
vote up 1 vote down

Try to debug big project that really loves macros, and there is a lot of macros that calls other macros that calls other macros etc etc. (5-10 levels of macros was not that uncommon)

And then top it up with a lot of #ifdef this macrot #else that macro, so if you follow the code it like a tree of different paths it can go.

The only solution is most cases was to precompile and read that instead....

link|flag
vote up 1 vote down
#define private public
link|flag
show 2 more comments
vote up 21 vote down

Directly from Qt:

#define slots   /* */
#define signals /* */

Really nice to interact with other libs as boost::signals... Just an example, there are many others in Qt that create funny looking code like:

class X : public QObject {
   Q_OBJECT
private slots:
   //...
public signals:
   //...
};

And that is C++... but suddenly:

boost::signals::trackable

Is not valid C++ any more.

link|flag
1  
:) So it is a macro that breaks other libraries for nothing. That's even better than I expected :) – dribeas Mar 17 at 10:37
4  
Qt is very territorial and will viciously attack other libraries that try to occupy its namespace :) – Jeremy Friesner Aug 7 at 1:16
2  
Sadly Qt attacks libraries outside of its namespace with the use of macros – dribeas Aug 8 at 22:21
3  
Use Q_SIGNALS and Q_SLOTS if you're afraid of this interaction. – tkadlubo Sep 18 at 6:45
show 2 more comments
vote up 26 vote down

A mix between Pascal syntax and french keywords:

#define debut {
#define fin }
#define si if(
#define alors ){
#define sinon }else{
#define finsi }
link|flag
6  
oh la la......... – Tom Jun 25 at 19:51
5  
#define zut_alors exit(-1) – MikeyB Jun 25 at 20:02
33  
#define merde throw std::runtime_error(...) – 1800 INFORMATION Jun 26 at 0:41
2  
notre poule dans votre cour (our chicken in your yard in french or my d**k in your a** in romanian) =))))))) – Andrei Rinea Sep 19 at 9:40
vote up 25 vote down

Real-world? MSVC has macros in minmax.h, called max and min, which cause a compiler error every time I intend to use the standard std::numeric_limits<T>::max() function.

link|flag
1  
Ah, yes, that's why I had a special header with sanity-restoring #undef's after the MS-specific ones... – Pontus Gagge Mar 17 at 10:53
3  
Solved with (std::numeric_limits<T>::max)() But yeah, pretty annoying. – rlbond Jun 25 at 20:04
12  
Add NOMINMAX to your project properties under C/C++ -> Preprocessor -> Preprocessor Definitions. – mattnewport Aug 7 at 1:12
show 5 more comments
vote up 6 vote down

In one year of the International Obfuscated C Coding Contest, there was an entry where the entire program was:

P

With the proviso that you could define P in the makefile to be whatever program you wanted.

As I recall, it won in one of the categories, and the next year a rule had popped up disallowing that style of entry.

(Edit: six months later or something... I'm sure the "No IOCCC" thing wasn't in the main question when I wrote this...)

link|flag
2  
Yeah, but easier to read than some of them are :). – quark Aug 20 at 4:52
show 2 more comments
vote up 0 vote down
#define protected private

Seemed like a good idea sometimes, but if you need to, you should probably just string replace anyway. Protected is fairly evil, allowing internal access to descendants isn't much better than just making the items public...

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.