diff options
author | peter <peter@FreeBSD.org> | 1999-12-29 04:46:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-29 04:46:21 +0000 |
commit | 15b9bcb121e1f3735a2c98a11afdb52a03301d7e (patch) | |
tree | e999c95eb5db56737efc17feeb385a77941021bb /sys/netncp/ncp_nls.h | |
parent | 9ed7cb48bf4a00a23e7489706b0effe1c516cb5b (diff) | |
download | FreeBSD-src-15b9bcb121e1f3735a2c98a11afdb52a03301d7e.zip FreeBSD-src-15b9bcb121e1f3735a2c98a11afdb52a03301d7e.tar.gz |
Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"
is an application space macro and the applications are supposed to be free
to use it as they please (but cannot). This is consistant with the other
BSD's who made this change quite some time ago. More commits to come.
Diffstat (limited to 'sys/netncp/ncp_nls.h')
-rw-r--r-- | sys/netncp/ncp_nls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netncp/ncp_nls.h b/sys/netncp/ncp_nls.h index 489b6df..bedc7ca 100644 --- a/sys/netncp/ncp_nls.h +++ b/sys/netncp/ncp_nls.h @@ -50,7 +50,7 @@ struct ncp_nlstables { int opt; /* may depend on context */ }; -#ifndef KERNEL +#ifndef _KERNEL /* * NLS, supported character conversion schemes. * NCP_NLS_UNIXCHARSET_NETWARECHARSET @@ -74,7 +74,7 @@ char* ncp_nls_mem_u2n(char *dst, const char *src, int size); __END_DECLS -#else /* !KERNEL */ +#else /* !_KERNEL */ extern struct ncp_nlstables ncp_defnls; @@ -85,6 +85,6 @@ void ncp_pathcopy(char *src, char *dst, int len, struct ncp_nlstables *nt); int ncp_pathcheck(char *s, int len, struct ncp_nlstables *nt, int strict); void ncp_path2unix(char *src, char *dst, int len, struct ncp_nlstables *nt); -#endif /* !KERNEL */ +#endif /* !_KERNEL */ #endif /* _NCP_NCP_NLS_H_ */ |