I implemented a function called abs(). I get this error:

Intrinsic function, cannot be defined

What have I done wrong? I'm using Visual Studio 2005.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

Intrinsic function, cannot be defined

In this case, intrinsic means that the compiler already has an implementation of a function called abs, and which you cannot redefine.

Solution? Change your function's name to something else, snakile_abs for example.

Check the MSDN documentation on the abs function for more information.

link|improve this answer
feedback

The problem is not being in a header or not.

The problem is that intrinsic functions, i.e., functions that the compiler recognizes and implements itself, generally with optimizations that wouldn't be available in C code alone, cannot be defined.

link|improve this answer
Thanks. Could you give an example? What do you mean by "compiler... implements itself"? What if I need to use that abs() function? – snakile Aug 24 '10 at 14:25
@sna #include <stdlib.h> – Artefacto Aug 24 '10 at 14:33
I include <stdlib.h>. Still doesn't work – snakile Aug 24 '10 at 14:39
@sna You mean you want to use an abs function different from the one in the standard c library?... just name it something else... – Artefacto Aug 24 '10 at 14:41
Oh, I see. Thank you. – snakile Aug 24 '10 at 14:55
feedback

The names of all mathematical functions (see math.h)

The names of all mathematical functions prefixed by 'f' or 'l'.

Are reserved for the implementation.

link|improve this answer
feedback

Defining static int abs(int x) { ... } should be legal, but simply int abs(int x) { ... } has undefined behavior, and thus one reasonable thing a compile could do is issue an error.

link|improve this answer
1  
Some header may still have #define abs __builtin_magic_abs orthe like. Since the preprocessor sees the text first, you still end up trying to define static int __buildin_magic_abs(int x){...}. Since abs() is a name defined in the C standard library, it is likely to be unwise (and certainly not portable) to attempt to replace it by name. – RBerteig Aug 25 '10 at 0:01
1  
As long as you don't #include any header that defines abs or #undef it before defining your own version, the Standard specifically allows you to replace it with a static function. Replacing the extern version is undefined behavior, however. – R.. Aug 25 '10 at 2:36
feedback

Your Answer

 
or
required, but never shown

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