diff options
author | 2015-06-01 09:27:53 +0000 | |
---|---|---|
committer | 2015-06-01 09:27:53 +0000 | |
commit | fdc9f3d7b6270279bea4b49cf0958cf85de3e839 (patch) | |
tree | 6c300c08ba02d4701bda4e3617b03f1c13a119d0 /lib/libc | |
parent | Clear signal handlers before event_reinit as apparently it can otherwise (diff) | |
download | wireguard-openbsd-fdc9f3d7b6270279bea4b49cf0958cf85de3e839.tar.xz wireguard-openbsd-fdc9f3d7b6270279bea4b49cf0958cf85de3e839.zip |
Put END() matching ENTRY().
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/amd64/sys/tfork_thread.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/arch/amd64/sys/tfork_thread.S b/lib/libc/arch/amd64/sys/tfork_thread.S index cd9937fa168..0f67225830e 100644 --- a/lib/libc/arch/amd64/sys/tfork_thread.S +++ b/lib/libc/arch/amd64/sys/tfork_thread.S @@ -1,4 +1,4 @@ -/* $OpenBSD: tfork_thread.S,v 1.4 2015/04/21 01:24:28 guenther Exp $ */ +/* $OpenBSD: tfork_thread.S,v 1.5 2015/06/01 09:27:53 uebayasi Exp $ */ /*- * Copyright (c) 2000 Peter Wemm <peter@FreeBSD.org> * Copyright (c) 2003 Alan L. Cox <alc@cs.rice.edu> @@ -91,3 +91,4 @@ ENTRY(__tfork_thread) #else jmp CERROR #endif +END(__tfork_thread) |