aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/lib.h
diff options
context:
space:
mode:
authorDaniel De Graaf <dgdegra@tycho.nsa.gov>2012-02-06 05:08:03 -0800
committerDaniel De Graaf <dgdegra@tycho.nsa.gov>2012-02-06 05:08:03 -0800
commit1f46c58d451cd1368307f4e0eea25044a0bd71fc (patch)
tree00f81e678597ae98388afc2295b8cb3417777ceb /xen/include/xen/lib.h
parent9ea4c2df1542d65001187361bbc968d4f91eda5c (diff)
downloadxen-1f46c58d451cd1368307f4e0eea25044a0bd71fc.tar.gz
xen-1f46c58d451cd1368307f4e0eea25044a0bd71fc.tar.bz2
xen-1f46c58d451cd1368307f4e0eea25044a0bd71fc.zip
xen: Remove unused vsscanf/sscanf functions
Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/xen/lib.h')
-rw-r--r--xen/include/xen/lib.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/xen/include/xen/lib.h b/xen/include/xen/lib.h
index c8cd9fca0e..d6f9182ec4 100644
--- a/xen/include/xen/lib.h
+++ b/xen/include/xen/lib.h
@@ -89,10 +89,6 @@ 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);