diff options
Diffstat (limited to 'contrib/groff/src/libs/libgroff/strcasecmp.c')
-rw-r--r-- | contrib/groff/src/libs/libgroff/strcasecmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/groff/src/libs/libgroff/strcasecmp.c b/contrib/groff/src/libs/libgroff/strcasecmp.c index ae7601d..6ed6cc2 100644 --- a/contrib/groff/src/libs/libgroff/strcasecmp.c +++ b/contrib/groff/src/libs/libgroff/strcasecmp.c @@ -13,7 +13,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */ #if HAVE_CONFIG_H # include <config.h> @@ -29,7 +29,7 @@ # define LENGTH_LIMIT_EXPR(Expr) 0 #endif -#include <sys/types.h> +#include <stddef.h> #include <ctype.h> #define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch)) |