Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8580 → Rev 8595

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