1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

GC the unused einval()

Obtained from:	~bde/sys.dif.gz
This commit is contained in:
Poul-Henning Kamp 2002-02-10 22:07:41 +00:00
parent 58a24f7938
commit d9888e41d5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90491
2 changed files with 0 additions and 12 deletions

View File

@ -51,17 +51,6 @@ eopnotsupp()
return (EOPNOTSUPP);
}
/*
* Return error for an inval operation
* on a specific object or file type.
*/
int
einval()
{
return (EINVAL);
}
/*
* Generic null operation, always returns success.
*/

View File

@ -113,7 +113,6 @@ void Debugger __P((const char *msg));
int dumpstatus __P((vm_offset_t addr, off_t count));
int nullop __P((void));
int eopnotsupp __P((void));
int einval __P((void));
int seltrue __P((dev_t dev, int which, struct thread *td));
int ureadc __P((int, struct uio *));
void *hashinit __P((int count, struct malloc_type *type, u_long *hashmask));