diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 13:50:13 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-23 13:50:13 +0000 |
commit | d452c875cf2841085b8240e0a96d2b271f75eb4d (patch) | |
tree | aba6fc817184b18f7a19e6435e2037c5187d5fb3 /Build/source/texk/kpathsea/concatn.h | |
parent | 3b038424f28fe19e6570593aa7ef8b30758af6eb (diff) |
use ANSI C function definitions and prototypes
use <stdarg.h> instead of <kpathsea/c-vararg.h>
git-svn-id: svn://tug.org/texlive/trunk@13917 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/concatn.h')
-rw-r--r-- | Build/source/texk/kpathsea/concatn.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/concatn.h b/Build/source/texk/kpathsea/concatn.h index b35ce53b7a5..6785cdb492f 100644 --- a/Build/source/texk/kpathsea/concatn.h +++ b/Build/source/texk/kpathsea/concatn.h @@ -1,6 +1,6 @@ /* concatn.h: concatenate a variable number of strings. This is a separate include file only because I don't see the point of - having every source file include <c-vararg.h>. The declarations for + having every source file include <stdarg.h>. The declarations for the other concat routines are in lib.h. Copyright 1993, 1996, 2008 Karl Berry. @@ -23,11 +23,11 @@ #define KPATHSEA_CONCATN_H #include <kpathsea/c-proto.h> -#include <kpathsea/c-vararg.h> +#include <stdarg.h> #include <kpathsea/types.h> /* Concatenate a null-terminated list of strings and return the result in malloc-allocated memory. */ -extern KPSEDLL string concatn PVAR1H(const_string str1); +extern KPSEDLL string concatn(const_string str1, ...); #endif /* not KPATHSEA_CONCATN_H */ |