30 lines
482 B
C
Executable File
30 lines
482 B
C
Executable File
/* Copyright (c) 1988 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#pragma ident "@(#)fill.c 1.4 92/07/17 SMI" /* SVr4.0 1.2 */
|
|
|
|
/*LINTLIBRARY*/
|
|
|
|
#ifdef __STDC__
|
|
#pragma weak elf_fill = _elf_fill
|
|
#endif
|
|
|
|
|
|
#include "syn.h"
|
|
|
|
|
|
extern int _elf_byte;
|
|
|
|
|
|
void
|
|
elf_fill(fill)
|
|
int fill;
|
|
{
|
|
_elf_byte = fill;
|
|
return;
|
|
}
|