diff options
author | Peter Wemm <peter@FreeBSD.org> | 2008-07-10 00:52:03 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2008-07-10 00:52:03 +0000 |
commit | 5715c7fb3cb3a3cbe3e156e13dee4e864943a72d (patch) | |
tree | a79e414d0b5fe7d2b7a8f6b24f1a1d7ed3edbb20 /src/dstring.c | |
parent | bb7e869618a549ab9bde54c3a2cfa3a7fd96a28b (diff) |
Notes
Diffstat (limited to 'src/dstring.c')
-rw-r--r-- | src/dstring.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/dstring.c b/src/dstring.c index e3cdae764a91d..aefeab88ce872 100644 --- a/src/dstring.c +++ b/src/dstring.c @@ -11,9 +11,10 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - 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. */ + 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., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301 USA. */ #if defined(HAVE_CONFIG_H) # include <config.h> @@ -27,13 +28,8 @@ #endif #include "dstring.h" -#if __STDC__ -# define P_(s) s -#else -# define P_(s) () -#endif -char *xmalloc P_((unsigned n)); -char *xrealloc P_((char *p, unsigned n)); +char *xmalloc (unsigned n); +char *xrealloc (char *p, unsigned n); /* Initialiaze dynamic string STRING with space for SIZE characters. */ |