Files
Arquivotheca.SunOS-4.1.4/lang/rtld/genassym.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

22 lines
384 B
C

/* @(#)genassym.c 1.1 94/10/31 SMI */
/*
* Copyright (c) 1987 by Sun Microsystems, Inc.
*/
/*
* Derive assembly language symbols from system header files.
*/
#include <sys/param.h>
#include <a.out.h>
main()
{
printf("#define\tPAGESIZE\t0x%x\n", PAGESIZE);
printf("#define\tPAGEMASK\t0x%x\n", PAGEMASK);
printf("#define\tTXTOFF\t0x%x\n", sizeof (struct exec));
exit(0);
}