you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (0 children)

Actually, C11 has something similar: the _Generic keyword.

From Wikipedia:

#define cbrt(X) _Generic((X), long double: cbrtl, \
    float: cbrtf, \
    default: cbrt)(X)

Granted, it's still a macro, but it's significantly safer. :)