summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/libefi/exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/efi/libefi/exit.c')
-rw-r--r--sys/boot/efi/libefi/exit.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/boot/efi/libefi/exit.c b/sys/boot/efi/libefi/exit.c
index 74b29c4..9488f18 100644
--- a/sys/boot/efi/libefi/exit.c
+++ b/sys/boot/efi/libefi/exit.c
@@ -22,16 +22,18 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#ifndef lint
+static const char rcsid[] =
+ "$FreeBSD$";
+#endif /* not lint */
+
#include <efi.h>
#include <efilib.h>
void
exit(int code)
{
- BS->Exit(IH, code ? EFI_LOAD_ERROR : EFI_SUCCESS, 0, 0);
+ BS->Exit(IH, code ? EFI_LOAD_ERROR : EFI_SUCCESS, 0, 0);
}
-
OpenPOWER on IntegriCloud