Last change
on this file since 4b63bf3 was b28a12e, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Zero redundant declarations.
|
-
Property mode
set to
100644
|
File size:
671 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | vsinit.c -- intialize VSDD software support variables
|
---|
| 4 | Version 5 -- 1988-08-15 -- D.N. Lynx Crowe
|
---|
| 5 | (c) Copyright 1987,1988 -- D.N. Lynx Crowe
|
---|
| 6 | =============================================================================
|
---|
| 7 | */
|
---|
| 8 |
|
---|
[b28a12e] | 9 | #include "ram.h"
|
---|
[f40a309] | 10 |
|
---|
| 11 | /*
|
---|
| 12 | =============================================================================
|
---|
| 13 | VSinit() -- initialize VSDD software support variables
|
---|
| 14 | =============================================================================
|
---|
| 15 | */
|
---|
| 16 |
|
---|
[0580615] | 17 | void VSinit(void)
|
---|
[f40a309] | 18 | {
|
---|
| 19 | v_nobj = 0;
|
---|
| 20 | v_obpri = 0;
|
---|
| 21 | memsetw(v_obtab, 0, (sizeof v_obtab)/2);
|
---|
| 22 | v_curob = &v_obtab[0];
|
---|
| 23 | }
|
---|
[6262b5c] | 24 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.