aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/lib.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-31 11:31:18 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-31 11:31:18 +0100
commitb1ed04146414f7bbef7e76289b6d4b0bf79a3203 (patch)
tree795743e153c0eed7737e152ca85d9a36f92e813d /xen/include/xen/lib.h
parentd046f361dc937d8fc179cc2da168f571726cb5a0 (diff)
downloadxen-b1ed04146414f7bbef7e76289b6d4b0bf79a3203.tar.gz
xen-b1ed04146414f7bbef7e76289b6d4b0bf79a3203.tar.bz2
xen-b1ed04146414f7bbef7e76289b6d4b0bf79a3203.zip
Xen Security Modules: FLASK
Signed-off-by: George Coker <gscoker@alpha.ncsc.mil>
Diffstat (limited to 'xen/include/xen/lib.h')
-rw-r--r--xen/include/xen/lib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/xen/include/xen/lib.h b/xen/include/xen/lib.h
index 3145542b25..d6aa891eb9 100644
--- a/xen/include/xen/lib.h
+++ b/xen/include/xen/lib.h
@@ -75,6 +75,10 @@ extern int scnprintf(char * buf, size_t size, const char * fmt, ...)
__attribute__ ((format (printf, 3, 4)));
extern int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
__attribute__ ((format (printf, 3, 0)));
+extern int sscanf(const char * buf, const char * fmt, ...)
+ __attribute__ ((format (scanf, 2, 3)));
+extern int vsscanf(const char * buf, const char * fmt, va_list args)
+ __attribute__ ((format (scanf, 2, 0)));
long simple_strtol(
const char *cp,const char **endp, unsigned int base);