blob: c55473afb431a1baa74db71c77c6d2ee4a71d224 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "symtab.h"
# STREFSTAB -- Convert an offset into STAB into a pointer to int.
pointer procedure strefstab (stp, offset)
pointer stp # symtab descriptor
int offset # offset into STAB
begin
return (ST_STABP(stp) + offset)
end
|