source: buchla-68k/vlib/vsinit.c@ 6262b5c

Last change on this file since 6262b5c was 6262b5c, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Added include files for global functions and variables.

  • 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 "all.h"
10
11/*
12 =============================================================================
13 VSinit() -- initialize VSDD software support variables
14 =============================================================================
15*/
16
17void 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.