diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-02-20 07:48:04 -0800 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-02-20 07:48:04 -0800 |
commit | 09adc944c379bb9f683d883a14fd8f5b642a40e4 (patch) | |
tree | 5f7451b22b0b679acabf53b5364ce294d1364a13 /mount.cifs.c | |
parent | 168459ca930dd7f34d31daec72d565e3192b0cb1 (diff) | |
download | cifs-utils-09adc944c379bb9f683d883a14fd8f5b642a40e4.tar.gz cifs-utils-09adc944c379bb9f683d883a14fd8f5b642a40e4.tar.bz2 cifs-utils-09adc944c379bb9f683d883a14fd8f5b642a40e4.zip |
autoconf: make sure C files include config.h
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'mount.cifs.c')
-rw-r--r-- | mount.cifs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mount.cifs.c b/mount.cifs.c index a9d827c..5237476 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -16,9 +16,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef _GNU_SOURCE -#define _GNU_SOURCE -#endif +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif /* HAVE_CONFIG_H */ #include <stdlib.h> #include <stdio.h> |