Commit a5f11d8c authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] kill stdarg in intermezzo

parent 8e7d9b1e
......@@ -22,7 +22,6 @@
#define __NO_VERSION__
#include <linux/module.h>
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/uaccess.h>
#include <asm/system.h>
......
......@@ -22,8 +22,6 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/ioctls.h>
#include <asm/uaccess.h>
......
......@@ -29,8 +29,6 @@
*
*/
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/uaccess.h>
#include <asm/system.h>
......
......@@ -23,7 +23,6 @@
*/
#define __NO_VERSION__
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/uaccess.h>
......
......@@ -32,12 +32,6 @@
# include <sys/types.h>
#endif
#undef MIN
#define MIN(a,b) (((a)<(b)) ? (a): (b))
#undef MAX
#define MAX(a,b) (((a)>(b)) ? (a): (b))
#define MKSTR(ptr) ((ptr))? (ptr) : ""
static inline int size_round (int val)
{
return (val + 3) & (~0x3);
......
......@@ -25,8 +25,6 @@
*
*/
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/uaccess.h>
#include <asm/system.h>
......
......@@ -25,7 +25,6 @@
#define __NO_VERSION__
#include <linux/module.h>
#include <stdarg.h>
#include <asm/uaccess.h>
#include <linux/errno.h>
......
......@@ -26,8 +26,6 @@
static char rcsid[] __attribute ((unused)) = "$Id: super.c,v 1.4 2002/10/12 02:16:19 rread Exp $";
#define INTERMEZZO_VERSION "$Revision: 1.4 $"
#include <stdarg.h>
#include <asm/bitops.h>
#include <asm/uaccess.h>
#include <asm/system.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment