minor munky

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1960 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas
1999-11-22 05:11:30 +00:00
parent 1e2b68b258
commit 1f81b7dc10

View File

@@ -24,8 +24,8 @@
* Huntington Beach, CA 92648-4632 *
\********************************************************************/
#include <math.h>
#include <malloc.h>
#include <math.h>
#include <string.h>
#include "config.h"
@@ -156,7 +156,7 @@ ultostr (unsigned long val, int base)
#if !HAVE_STPCPY
char *
stpcpy (char *dest, const char *src)
stpcpy (char *dest, const char *src)
{
strcpy(dest, src);
return(dest + strlen(src));