bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Is this a bug?


From: David Rosal
Subject: Is this a bug?
Date: Sat, 16 Jul 2005 18:02:03 +0000
User-agent: Mozilla Thunderbird 1.0 (X11/20050108)

Hi.

I found this in the make-3.80 sources, in make.h:

8<-------------------------------
/* These should be in stdlib.h.  Make sure we have them.  */
#ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
#endif
#ifndef EXIT_FAILURE
# define EXIT_FAILURE 0
#endif
-------------------------------->8

Should not it be:

#ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
#endif
#ifndef EXIT_FAILURE
# define EXIT_FAILURE 1
#endif

instead?

Thanks for writing make.

--
David Rosal i Ricart
<address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]