From d1f6922f991732931322d61a1ac2fa53c626dd86 Mon Sep 17 00:00:00 2001 From: stefanf Date: Tue, 8 Jun 2004 13:46:31 +0000 Subject: [PATCH] Remove an #if section originally written for Sun compilers. --- sys/netatm/atm_ioctl.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/sys/netatm/atm_ioctl.h b/sys/netatm/atm_ioctl.h index 1dc14b52c54..7fce9be122e 100644 --- a/sys/netatm/atm_ioctl.h +++ b/sys/netatm/atm_ioctl.h @@ -421,18 +421,10 @@ struct air_phy_stat_rsp { /* * PF_ATM ioctls */ -#if !(defined(__GNUC__) || defined(__INTEL_COMPILER)) -#define AIOCCFG _IOW(A, 128, struct atmcfgreq) /* Configure i/f */ -#define AIOCADD _IOW(A, 129, struct atmaddreq) /* Add (e.g. PVC) */ -#define AIOCDEL _IOW(A, 130, struct atmdelreq) /* Delete */ -#define AIOCSET _IOW(A, 132, struct atmsetreq) /* Set (e.g. net i/f) */ -#define AIOCINFO _IOWR(A, 133, struct atminfreq) /* Show kernel info */ -#else #define AIOCCFG _IOW('A', 128, struct atmcfgreq)/* Configure i/f */ #define AIOCADD _IOW('A', 129, struct atmaddreq)/* Add (e.g. PVC) */ #define AIOCDEL _IOW('A', 130, struct atmdelreq)/* Delete */ #define AIOCSET _IOW('A', 132, struct atmsetreq)/* Set (e.g. net i/f) */ #define AIOCINFO _IOWR('A', 133, struct atminfreq)/* Show kernel info */ -#endif #endif /* _NETATM_ATM_IOCTL_H */ -- 2.45.2