On 25/09/2015 14:44, Andreas Färber wrote: > > Do we actually use long long and unsigned long long anywhere? > > The next patch does, because checkpatch asks for it. :) > > qemu_strtoull() has some special handling for Windows apparently.
No, I really mean the types. :) The qemu_strtoll/qemu_strtoull functions use {,u}int64_t because they are much more used than long long and unsigned long long. Paolo