File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 3
3
** REBOL [R3] Language Interpreter and Run-time Environment
4
4
**
5
5
** Copyright 2012 REBOL Technologies
6
+ ** Copyright 2012-2023 Rebol Open Source Developers
6
7
** REBOL is a trademark of REBOL Technologies
7
8
**
8
9
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -369,7 +370,7 @@ RL_LIB *RL; // Link back to reb-lib from embedded extensions (like for now: host
369
370
370
371
/***********************************************************************
371
372
**
372
- */ void OS_Exit (int code )
373
+ */ REB_NORETURN void OS_Exit (int code )
373
374
/*
374
375
** Called in all cases when REBOL quits
375
376
**
@@ -387,7 +388,7 @@ RL_LIB *RL; // Link back to reb-lib from embedded extensions (like for now: host
387
388
388
389
/***********************************************************************
389
390
**
390
- */ void OS_Crash (const REBYTE * title , const REBYTE * content )
391
+ */ REB_NORETURN void OS_Crash (const REBYTE * title , const REBYTE * content )
391
392
/*
392
393
** Tell user that REBOL has crashed. This function must use
393
394
** the most obvious and reliable method of displaying the
Original file line number Diff line number Diff line change 3
3
** REBOL [R3] Language Interpreter and Run-time Environment
4
4
**
5
5
** Copyright 2012 REBOL Technologies
6
+ ** Copyright 2012-2023 Rebol Open Source Developers
6
7
** REBOL is a trademark of REBOL Technologies
7
8
**
8
9
** Licensed under the Apache License, Version 2.0 (the "License");
@@ -371,7 +372,7 @@ static void *Task_Ready;
371
372
372
373
/***********************************************************************
373
374
**
374
- */ void OS_Exit (int code )
375
+ */ REB_NORETURN void OS_Exit (int code )
375
376
/*
376
377
** Called in all cases when REBOL quits
377
378
**
@@ -397,7 +398,7 @@ static void *Task_Ready;
397
398
398
399
/***********************************************************************
399
400
**
400
- */ void OS_Crash (const REBYTE * title , const REBYTE * content )
401
+ */ REB_NORETURN void OS_Crash (const REBYTE * title , const REBYTE * content )
401
402
/*
402
403
** Tell user that REBOL has crashed. This function must use
403
404
** the most obvious and reliable method of displaying the
You can’t perform that action at this time.
0 commit comments