1 /* $XConsortium: exextra.h /main/3 1995/11/01 15:53:50 rswiston $ */
2 /* Copyright (c) 1991, 1992 UNIX System Laboratories, Inc. */
3 /* All Rights Reserved */
5 /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
6 /* UNIX System Laboratories, Inc. */
7 /* The copyright notice above does not evidence any */
8 /* actual or intended publication of such source code. */
10 #ifndef _Dtksh_exextra_h
11 #define _Dtksh_exextra_h
14 #define EXKSH_EXTRA_TABLE \
15 { "call", NV_BLTIN|BLT_ENV|BLT_SPC, do_call }, \
16 { "field_comp", NV_BLTIN|BLT_ENV|BLT_SPC, do_field_comp }, \
17 { "field_get", NV_BLTIN|BLT_ENV|BLT_SPC, do_field_get }, \
18 { "sizeof", NV_BLTIN|BLT_ENV|BLT_SPC, do_sizeof }, \
19 { "findsym", NV_BLTIN|BLT_ENV|BLT_SPC, do_findsym }, \
20 { "finddef", NV_BLTIN|BLT_ENV|BLT_SPC, do_finddef }, \
21 { "deflist", NV_BLTIN|BLT_ENV|BLT_SPC, do_deflist }, \
22 { "define", NV_BLTIN|BLT_ENV|BLT_SPC, do_define }, \
23 { "structlist", NV_BLTIN|BLT_ENV|BLT_SPC, do_structlist }, \
24 { "deref", NV_BLTIN|BLT_ENV|BLT_SPC, do_deref }, \
25 { "struct", NV_BLTIN|BLT_ENV|BLT_SPC, do_struct }, \
26 { "typedef", NV_BLTIN|BLT_ENV|BLT_SPC, do_typedef }, \
27 { "symbolic", NV_BLTIN|BLT_ENV|BLT_SPC, do_symbolic }, \
30 #define EXKSH_EXTRA_VAR \
31 "RET", NV_NOFREE|NV_RDONLY, (char*)(&xk_ret_buffer[0]), \
32 "PRDEBUG", NV_NOFREE|NV_INTEGER, (char*)(&xk_prdebug),
34 #define EXKSH_EXTRA_ALIAS \
35 "args", NV_NOFREE|NV_EXPORT, "setargs \"$@\"",
37 #endif /* _Dtksh_exextra_h */
38 /* DON'T ADD ANYTHING AFTER THIS #endif */