[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-gnulib] Relicense exit.h under LGPL?
From: |
Paul Eggert |
Subject: |
Re: [Bug-gnulib] Relicense exit.h under LGPL? |
Date: |
Sat, 02 Oct 2004 15:35:36 -0700 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) |
Simon Josefsson <address@hidden> writes:
> exit.h is useful
If you're willing to assume C89 or later, you don't need exit.h.
Just include <stdlib.h>.
If you really are trying to cater to ancient or nonstandard compilers,
I would favor solving the problem using Autoconf instead of modifying
your source code to include "exit.h". Surely config.h can define
EXIT_FAILURE if stdlib.h doesn't.