diff options
author | Toomas Soome <tsoome@FreeBSD.org> | 2020-08-26 07:29:17 +0000 |
---|---|---|
committer | Toomas Soome <tsoome@FreeBSD.org> | 2020-08-26 07:29:17 +0000 |
commit | f6385d921b2f354d71256d1d0392122597e0fd33 (patch) | |
tree | 8c73fc082023678167dabbda3b230e37e8b28c80 | |
parent | 977c5b5790efed14f530ef135eedc97523a26ee8 (diff) | |
download | src-f6385d921b2f354d71256d1d0392122597e0fd33.tar.gz src-f6385d921b2f354d71256d1d0392122597e0fd33.zip |
remove pragma ident lines
The #pragma ident is historical relict and not needed any more, this
pragma is actually unknown for common compilers and is only causing
trouble.
Notes
Notes:
svn path=/head/; revision=364806
7 files changed, 0 insertions, 14 deletions
diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/acl_impl.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/acl_impl.h index 8718f5bcf63f..1efbd6d73bd0 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/acl_impl.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/acl_impl.h @@ -26,8 +26,6 @@ #ifndef _SYS_ACL_IMPL_H #define _SYS_ACL_IMPL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/cmn_err.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/cmn_err.h index a75471f647eb..00d686439f94 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/cmn_err.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/cmn_err.h @@ -31,8 +31,6 @@ #ifndef _SYS_CMN_ERR_H #define _SYS_CMN_ERR_H -#pragma ident "%Z%%M% %I% %E% SMI" - #if !defined(_ASM) #include <sys/_stdarg.h> #endif diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/extdirent.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/extdirent.h index 65ba11f345d2..b22e8e8563a2 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/extdirent.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/extdirent.h @@ -26,8 +26,6 @@ #ifndef _SYS_EXTDIRENT_H #define _SYS_EXTDIRENT_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/list.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/list.h index 8339b6226d11..6db92ed42955 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/list.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/list.h @@ -26,8 +26,6 @@ #ifndef _SYS_LIST_H #define _SYS_LIST_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/list_impl.h> #ifdef __cplusplus diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/list_impl.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/list_impl.h index 9c42f8832023..a6614f9a38c2 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/list_impl.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/list_impl.h @@ -27,8 +27,6 @@ #ifndef _SYS_LIST_IMPL_H #define _SYS_LIST_IMPL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <sys/types.h> #ifdef __cplusplus diff --git a/sys/contrib/openzfs/include/os/freebsd/spl/sys/zmod.h b/sys/contrib/openzfs/include/os/freebsd/spl/sys/zmod.h index ba0267203ce3..c606b1db5f61 100644 --- a/sys/contrib/openzfs/include/os/freebsd/spl/sys/zmod.h +++ b/sys/contrib/openzfs/include/os/freebsd/spl/sys/zmod.h @@ -27,8 +27,6 @@ #ifndef _ZMOD_H #define _ZMOD_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif diff --git a/sys/contrib/openzfs/module/os/freebsd/spl/list.c b/sys/contrib/openzfs/module/os/freebsd/spl/list.c index 21230b2adddb..8796be4a98fb 100644 --- a/sys/contrib/openzfs/module/os/freebsd/spl/list.c +++ b/sys/contrib/openzfs/module/os/freebsd/spl/list.c @@ -23,8 +23,6 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * Generic doubly-linked list implementation */ |