|
Last change
on this file since 7ecfb7b was b28a12e, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Zero redundant declarations.
|
-
Property mode
set to
100644
|
|
File size:
671 bytes
|
| Line | |
|---|
| 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 |
|
|---|
| 9 | #include "ram.h"
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | =============================================================================
|
|---|
| 13 | VSinit() -- initialize VSDD software support variables
|
|---|
| 14 | =============================================================================
|
|---|
| 15 | */
|
|---|
| 16 |
|
|---|
| 17 | void VSinit(void)
|
|---|
| 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 | }
|
|---|
| 24 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.