commit | 6dd4b91b326b0c385d9c68c90a255d6db799757e | [log] [tgz] |
---|---|---|
author | Martin Storsjo <martin@martin.st> | Fri Jan 27 17:54:02 2012 +0200 |
committer | Martin Storsjo <martin@martin.st> | Fri Jan 27 17:54:02 2012 +0200 |
tree | 3a33f2da86010b78380fab6dde5feb2930dc69cd | |
parent | e4ee58f3cb786dca4efccb090428a4429cc751c9 [diff] |
Make sure __u64 is defined even for strict ansi or -std=c99 The x86 asm headers define __u64 regardless of __STRICT_ANSI__. The linux/videodev2.h header requires __u64 to be defined, thus this fixes compiling with -std=c99 when including the linux/videodev2.h header. In glibc, the asm/types.h header defines __u64 regardless of __STRICT_ANSI__. This commit copies the updated header from bionic into the ndk platform headers.