retire _PROTOTYPE

. only good for obsolete K&R support
	. also remove a stray ansi.h and the proto cmd
This commit is contained in:
Ben Gras
2012-03-24 16:16:34 +01:00
parent cf720a028a
commit 6a73e85ad1
475 changed files with 5256 additions and 6252 deletions

View File

@@ -19,13 +19,11 @@
#include "const.h"
FORWARD _PROTOTYPE( bit_t alloc_inode_bit, (struct super_block *sp,
struct inode *parent,
int is_dir));
FORWARD _PROTOTYPE( void free_inode_bit, (struct super_block *sp,
bit_t bit_returned,
int is_dir));
FORWARD _PROTOTYPE( void wipe_inode, (struct inode *rip));
FORWARD bit_t alloc_inode_bit(struct super_block *sp, struct inode
*parent, int is_dir);
FORWARD void free_inode_bit(struct super_block *sp, bit_t bit_returned,
int is_dir);
FORWARD void wipe_inode(struct inode *rip);
/*===========================================================================*
@@ -110,14 +108,14 @@ PUBLIC void free_inode(
}
FORWARD _PROTOTYPE( int find_group_dir, (struct super_block *sp,
struct inode *parent) );
FORWARD _PROTOTYPE( int find_group_hashalloc, (struct super_block *sp,
struct inode *parent) );
FORWARD _PROTOTYPE( int find_group_any, (struct super_block *sp,
struct inode *parent) );
FORWARD _PROTOTYPE( int find_group_orlov, (struct super_block *sp,
struct inode *parent) );
FORWARD int find_group_dir(struct super_block *sp, struct inode
*parent);
FORWARD int find_group_hashalloc(struct super_block *sp, struct inode
*parent);
FORWARD int find_group_any(struct super_block *sp, struct inode
*parent);
FORWARD int find_group_orlov(struct super_block *sp, struct inode
*parent);
/*===========================================================================*