[BusyBox-cvs] busybox/util-linux mkfs_minix.c,1.38,1.39
Erik Andersen
andersen at busybox.net
Wed Aug 6 07:34:22 UTC 2003
Update of /var/cvs/busybox/util-linux
In directory winder:/tmp/cvs-serv16578/util-linux
Modified Files:
mkfs_minix.c
Log Message:
extern inline is a bad bad thing. kill it (so mkfs_minix.c will
actually compile)
Index: mkfs_minix.c
===================================================================
RCS file: /var/cvs/busybox/util-linux/mkfs_minix.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- mkfs_minix.c 19 Mar 2003 09:13:01 -0000 1.38
+++ mkfs_minix.c 6 Aug 2003 07:34:19 -0000 1.39
@@ -254,7 +254,7 @@
* an already mounted partition. Code adapted from mke2fs, Copyright
* (C) 1994 Theodore Ts'o. Also licensed under GPL.
*/
-extern inline void check_mount(void)
+static inline void check_mount(void)
{
FILE *f;
struct mntent *mnt;
@@ -282,7 +282,7 @@
return 1;
}
-extern inline int count_blocks(int fd)
+static inline int count_blocks(int fd)
{
int high, low;
@@ -301,7 +301,7 @@
return (low + 1);
}
-extern inline int get_size(const char *file)
+static inline int get_size(const char *file)
{
int fd;
long size;
@@ -318,7 +318,7 @@
return size;
}
-extern inline void write_tables(void)
+static inline void write_tables(void)
{
/* Mark the super block valid. */
Super.s_state |= MINIX_VALID_FS;
@@ -368,7 +368,7 @@
return blk;
}
-extern inline void mark_good_blocks(void)
+static inline void mark_good_blocks(void)
{
int blk;
@@ -386,7 +386,7 @@
return 0;
}
-extern inline void make_bad_inode(void)
+static inline void make_bad_inode(void)
{
struct minix_inode *inode = &Inode[MINIX_BAD_INO];
int i, j, zone;
@@ -437,7 +437,7 @@
}
#ifdef CONFIG_FEATURE_MINIX2
-extern inline void make_bad_inode2(void)
+static inline void make_bad_inode2(void)
{
struct minix2_inode *inode = &Inode2[MINIX_BAD_INO];
int i, j, zone;
@@ -487,7 +487,7 @@
}
#endif
-extern inline void make_root_inode(void)
+static inline void make_root_inode(void)
{
struct minix_inode *inode = &Inode[MINIX_ROOT_INO];
@@ -510,7 +510,7 @@
}
#ifdef CONFIG_FEATURE_MINIX2
-extern inline void make_root_inode2(void)
+static inline void make_root_inode2(void)
{
struct minix2_inode *inode = &Inode2[MINIX_ROOT_INO];
@@ -533,7 +533,7 @@
}
#endif
-extern inline void setup_tables(void)
+static inline void setup_tables(void)
{
int i;
unsigned long inodes;
@@ -603,7 +603,7 @@
* Perform a test of a block; return the number of
* blocks readable/writeable.
*/
-extern inline long do_check(char *buffer, int try, unsigned int current_block)
+static inline long do_check(char *buffer, int try, unsigned int current_block)
{
long got;
More information about the busybox-cvs
mailing list