aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-common.h
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-25 11:23:27 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-25 11:23:27 +0000
commit2bd7318c1a40cd2f2ae55382be3433ea384e8eff (patch)
treeb3626dc8891c995c03cd6c33b5a3c3bd44e9c28e /qemu-common.h
parentbe15b141e0dddd9f41e464ca98aef1b05b28cf6b (diff)
downloadqemu-kvm-2bd7318c1a40cd2f2ae55382be3433ea384e8eff.tar.gz
Replace uses of strndup (a GNU extension) with Qemu pstrdup
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5532 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index cc95fe62bbf..aca26746223 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -82,6 +82,7 @@ int qemu_timedate_diff(struct tm *tm);
/* cutils.c */
void pstrcpy(char *buf, int buf_size, const char *str);
char *pstrcat(char *buf, int buf_size, const char *s);
+char *pstrdup(const char *str, size_t buf_size);
int strstart(const char *str, const char *val, const char **ptr);
int stristart(const char *str, const char *val, const char **ptr);
time_t mktimegm(struct tm *tm);