libtt: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 04:06:47 +01:00
parent 6b09b19351
commit 020d592338
62 changed files with 275 additions and 706 deletions

View File

@@ -65,9 +65,7 @@ Static int _am_addprimary();
*/
int
isaddprimary(isfd, keydesc)
int isfd;
struct keydesc *keydesc;
isaddprimary(int isfd, struct keydesc *keydesc)
{
register Fab *fab;
int ret;
@@ -94,9 +92,7 @@ isaddprimary(isfd, keydesc)
return (ret); /* Successful write */
}
Static int _am_addprimary(fab, keydesc)
register Fab *fab;
struct keydesc *keydesc;
Static int _am_addprimary(register Fab *fab, struct keydesc *keydesc)
{
return (_amaddprimary(&fab->isfhandle, keydesc, &fab->errcode));
}