Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8595 → Rev 8594

/contrib/sdk/sources/newlib/libc/include/kos32sys.h
553,13 → 553,12
pos_t max_screen_size()
{
pos_t size;
pos_t size_tmp;
__asm__ __volatile__(
"int $0x40"
:"=a"(size_tmp)
:"=a"(size)
:"a"(14));
size.x = size_tmp.y;
size.y = size_tmp.x;
return size;
};