vm: fix a null dereference on out-of-memory
[minix.git] / lib / libc / arch / mips / gen / fpgetmask.c
blob1e62810daf254c2496928ad5caeac395c6a48553
1 /* $NetBSD: fpgetmask.c,v 1.5 2005/12/24 23:10:08 perry Exp $ */
3 /*
4 * Written by J.T. Conklin, Apr 11, 1995
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetmask.c,v 1.5 2005/12/24 23:10:08 perry Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <ieeefp.h>
17 #ifdef __weak_alias
18 __weak_alias(fpgetmask,_fpgetmask)
19 #endif
21 fp_except
22 fpgetmask()
24 int x;
26 __asm("cfc1 %0,$31" : "=r" (x));
27 return (x >> 7) & 0x1f;