aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/lib.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-19 21:11:51 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-19 21:11:51 +0000
commitcc78f77c86b5a17dcd4aed5748fde1c5c6664af9 (patch)
tree18641392d31d68aaeb75f36527232a1a51f86612 /xen/common/lib.c
parent63b5c765a2948e50f72c4058dfa8e71be8f87702 (diff)
downloadxen-cc78f77c86b5a17dcd4aed5748fde1c5c6664af9.tar.gz
xen-cc78f77c86b5a17dcd4aed5748fde1c5c6664af9.tar.bz2
xen-cc78f77c86b5a17dcd4aed5748fde1c5c6664af9.zip
bitkeeper revision 1.1466.2.1 (428d01177uVxPlsgcWtGU3xUZaKeJw)
Rename memparse() to parse_size_and_unit(). A more general-purpose name, and avoids unecessary clash with Linux function name. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/lib.c')
-rw-r--r--xen/common/lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/lib.c b/xen/common/lib.c
index 6c0706f1f1..764ad7143d 100644
--- a/xen/common/lib.c
+++ b/xen/common/lib.c
@@ -441,7 +441,7 @@ s64 __moddi3(s64 a, s64 b)
#endif /* BITS_PER_LONG == 32 */
-unsigned long long memparse(char *s)
+unsigned long long parse_size_and_unit(char *s)
{
unsigned long long ret = simple_strtoull(s, &s, 0);