aboutsummaryrefslogtreecommitdiff
path: root/osdep.h
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-16 12:55:24 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-16 12:55:24 +0000
commitc6d29ad6e24533cc3762e1d654275607e1d03058 (patch)
tree49cbe0303140f06b5f1d2f1c72ecbab8790efd97 /osdep.h
parent4f8eb8daebd72bdc214c63a3b2577f95bbadb27d (diff)
Add missing ffs() declaration for Win32 hosts, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3821 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'osdep.h')
-rw-r--r--osdep.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/osdep.h b/osdep.h
index 0acffa44a1..c8ab667b4d 100644
--- a/osdep.h
+++ b/osdep.h
@@ -56,6 +56,8 @@ void *get_mmap_addr(unsigned long size);
int qemu_create_pidfile(const char *filename);
#ifdef _WIN32
+int ffs(int i);
+
typedef struct {
long tv_sec;
long tv_usec;