Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ident.c 383 B
/*
 *  ======== ident.c ========
 */

#define _VERS_ "@(#)*** xdc-D22"

static char __NAME[] = _NAME_;
static char __DATE[] = _DATE_;
static char __VERS[] = _VERS_;
static char __CSUM[] = _CSUM_;

/* keep compiler from warning about unused variables above */
static int __ISIZ = sizeof(__NAME) + sizeof(__DATE)
                    + sizeof(__VERS) + sizeof(__CSUM) + sizeof(__ISIZ);