X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Finclude%2Fpalacios%2Fvmm_string.h;h=ccf21a0cd602bf54454d9a99e6c200d6e7bd2e64;hb=6eec27d5e1e3eb7cf3006b24389520d3058b6848;hp=46ecef5eefab34d92b323fa1b26bd22febdd8948;hpb=a109eb919a162bd7de58d62020801bc2e633be50;p=palacios.releases.git diff --git a/palacios/include/palacios/vmm_string.h b/palacios/include/palacios/vmm_string.h index 46ecef5..ccf21a0 100644 --- a/palacios/include/palacios/vmm_string.h +++ b/palacios/include/palacios/vmm_string.h @@ -1,7 +1,9 @@ -/* - * String library +/* * String library * Copyright (c) 2001,2004 David H. Hovemeyer - * $Revision: 1.1 $ + * (c) 2008, Jack Lange + * (c) 2008, Lei Xia + * (c) 2008, The V3VEE Project + * $Revision: 1.2 $ * * This is free software. You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". @@ -10,6 +12,8 @@ #ifndef STRING_H #define STRING_H +#ifdef __V3VEE__ + #include void* memset(void* s, int c, size_t n); @@ -30,5 +34,9 @@ char *strrchr(const char *s, int c); char *strpbrk(const char *s, const char *accept); +double ceil(double x); + + +#endif // !__V3VEE__ #endif /* STRING_H */