diff options
author | 2005-11-25 06:53:22 +0000 | |
---|---|---|
committer | 2005-11-25 06:53:22 +0000 | |
commit | 89fe62824862d0a86eb49c6c8076ea22f6d33038 (patch) | |
tree | 3129d5ce23f4d0e46a295d95352bf21e6c1929f5 | |
parent | update. (diff) | |
download | wireguard-openbsd-89fe62824862d0a86eb49c6c8076ea22f6d33038.tar.xz wireguard-openbsd-89fe62824862d0a86eb49c6c8076ea22f6d33038.zip |
don't ask; ok drahn
-rw-r--r-- | lib/libpthread/arch/arm/uthread_machdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libpthread/arch/arm/uthread_machdep.c b/lib/libpthread/arch/arm/uthread_machdep.c index 187ddbb2af3..639199b19f4 100644 --- a/lib/libpthread/arch/arm/uthread_machdep.c +++ b/lib/libpthread/arch/arm/uthread_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_machdep.c,v 1.3 2004/02/25 04:16:54 drahn Exp $ */ +/* $OpenBSD: uthread_machdep.c,v 1.4 2005/11/25 06:53:22 deraadt Exp $ */ /* * Copyright (c) 2004 Dale Rahn. All rights reserved. @@ -94,16 +94,20 @@ void _thread_machdep_save_float_state(statep) struct _machdep_state* statep; { +#if 0 #ifndef __VFP_FP__ #error finish FP save #endif +#endif } void _thread_machdep_restore_float_state(statep) struct _machdep_state* statep; { +#if 0 #ifndef __VFP_FP__ #error finish FP save #endif +#endif } |