diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 12:55:24 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 12:55:24 +0000 |
commit | c6d29ad6e24533cc3762e1d654275607e1d03058 (patch) | |
tree | 49cbe0303140f06b5f1d2f1c72ecbab8790efd97 /osdep.h | |
parent | 4f8eb8daebd72bdc214c63a3b2577f95bbadb27d (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.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |