X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fcheck-version.c;h=5152b9ca4dc9641df342b92154eb666f9f330b1b;hb=df1da811f288a89eb524a4176c6fd62bacfb954a;hp=4df90a4843f4d12b31c7c6f2737763bc8a27628a;hpb=222b0486b7db1b09293e05512873d633440efcb3;p=gnulib.git diff --git a/lib/check-version.c b/lib/check-version.c index 4df90a484..5152b9ca4 100644 --- a/lib/check-version.c +++ b/lib/check-version.c @@ -1,6 +1,6 @@ /* check-version.h --- Check version string compatibility. - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free - Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, + 2008 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,22 +20,19 @@ gcry_check_version from Werner Koch's Libgcrypt. Paul Eggert suggested the use of strverscmp to simplify implementation. */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include -#include +#include /* Get specification. */ #include "check-version.h" -/* Check that the the version of the library (i.e., the CPP symbol - * VERSION) is at minimum the requested one in REQ_VERSION (typically - * found in a header file) and return the version string. Return NULL - * if the condition is not satisfied. If a NULL is passed to this - * function, no check is done, but the version string is simply - * returned. +/* Check that the version of the library (i.e., the CPP symbol VERSION) + * is at minimum the requested one in REQ_VERSION (typically found in + * a header file) and return the version string. Return NULL if the + * condition is not satisfied. If a NULL is passed to this function, + * no check is done, but the version string is simply returned. */ const char * check_version (const char *req_version)