virtio-serial: Turn props any virtio-serial-bus device must have into bus props
[qemu.git] / tests / cris / sys.h
blobc5f88e1a2946f1ed8bae75a8e1bd186a07eea4d2
1 #include <unistd.h>
3 #define STRINGIFY(x) #x
4 #define TOSTRING(x) STRINGIFY(x)
6 #define CURRENT_LOCATION __FILE__ ":" TOSTRING(__LINE__)
8 #define err() \
9 { \
10 _fail("at " CURRENT_LOCATION " "); \
13 #define mb() asm volatile ("" : : : "memory")
15 void pass(void);
16 void _fail(char *reason);