Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: atmapi.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
/* atmapi.h - ATM API user space/kernel compatibility */
[1] Fix | Delete
[2] Fix | Delete
/* Written 1999,2000 by Werner Almesberger, EPFL ICA */
[3] Fix | Delete
[4] Fix | Delete
[5] Fix | Delete
#ifndef _LINUX_ATMAPI_H
[6] Fix | Delete
#define _LINUX_ATMAPI_H
[7] Fix | Delete
[8] Fix | Delete
#if defined(__sparc__) || defined(__ia64__)
[9] Fix | Delete
/* such alignment is not required on 32 bit sparcs, but we can't
[10] Fix | Delete
figure that we are on a sparc64 while compiling user-space programs. */
[11] Fix | Delete
#define __ATM_API_ALIGN __attribute__((aligned(8)))
[12] Fix | Delete
#else
[13] Fix | Delete
#define __ATM_API_ALIGN
[14] Fix | Delete
#endif
[15] Fix | Delete
[16] Fix | Delete
[17] Fix | Delete
/*
[18] Fix | Delete
* Opaque type for kernel pointers. Note that _ is never accessed. We need
[19] Fix | Delete
* the struct in order hide the array, so that we can make simple assignments
[20] Fix | Delete
* instead of being forced to use memcpy. It also improves error reporting for
[21] Fix | Delete
* code that still assumes that we're passing unsigned longs.
[22] Fix | Delete
*
[23] Fix | Delete
* Convention: NULL pointers are passed as a field of all zeroes.
[24] Fix | Delete
*/
[25] Fix | Delete
[26] Fix | Delete
typedef struct { unsigned char _[8]; } __ATM_API_ALIGN atm_kptr_t;
[27] Fix | Delete
[28] Fix | Delete
#endif
[29] Fix | Delete
[30] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function