6d23f072f3
names. All system processes can now either use panic() or report() from libutils, or redefine their own function. Assertions are done via the standard <assert.h> functionality.
19 lines
423 B
C
19 lines
423 B
C
/* Function prototypes. */
|
|
|
|
/* Structs used in prototypes must be declared as such first. */
|
|
|
|
/* main.c */
|
|
_PROTOTYPE( void main, (void) );
|
|
|
|
/* putk.c */
|
|
_PROTOTYPE( void kputc, (int c) );
|
|
|
|
/* diag.c */
|
|
_PROTOTYPE( int do_new_kmess, (message *m) );
|
|
_PROTOTYPE( int do_diagnostics, (message *m) );
|
|
_PROTOTYPE( void diag_putc, (int c) );
|
|
|
|
/* dmp.c */
|
|
_PROTOTYPE( int do_fkey_pressed, (message *m) );
|
|
|
|
|