24 lines
628 B
C
24 lines
628 B
C
/* $XConsortium: xmksh.h /main/3 1995/11/01 15:59:25 rswiston $ */
|
|
/* Copyright (c) 1991, 1992 UNIX System Laboratories, Inc. */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
|
|
/* UNIX System Laboratories, Inc. */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/*
|
|
* used for some type-to-String converters
|
|
*/
|
|
|
|
#ifndef _Dtksh_xmksh_h
|
|
#define _Dtksh_xmksh_h
|
|
|
|
struct named_integer {
|
|
const char *name;
|
|
const long value;
|
|
};
|
|
|
|
#endif /* _Dtksh_xmksh_h */
|
|
/* DON'T ADD ANYTHING AFTER THIS #endif */
|