diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 18:13:49 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 18:13:49 +0000 |
commit | eab1b679e07aa9debd2c85efca6629cb71b32ec0 (patch) | |
tree | 331db9ae4336329d2bfe9a84fcde0aa8f9613134 /editors/uemacs/files/patch-src_lock.c | |
parent | Fix CANNA option. (diff) |
Rename editors/ patch-xy patches to reflect the files they modify.
Notes
Notes:
svn path=/head/; revision=363213
Diffstat (limited to 'editors/uemacs/files/patch-src_lock.c')
-rw-r--r-- | editors/uemacs/files/patch-src_lock.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/editors/uemacs/files/patch-src_lock.c b/editors/uemacs/files/patch-src_lock.c new file mode 100644 index 000000000000..ac37d4230303 --- /dev/null +++ b/editors/uemacs/files/patch-src_lock.c @@ -0,0 +1,20 @@ +--- src/lock.c.orig Sun Nov 19 03:09:22 1995 ++++ src/lock.c Wed Mar 25 13:56:13 1998 +@@ -10,10 +10,17 @@ + + #if FILOCK + ++#if BSD ++#undef BSD ++#include <sys/param.h> ++#endif ++ + #if BSD || FREEBSD || WMCS || SUN || XENIX || HPUX8 || HPUX9 || AVIION || USG || AIX || AUX + #include <sys/errno.h> ++#if !(defined(BSD) && (BSD >= 199103)) + extern int sys_nerr; /* number of system error messages defined */ + extern char *sys_errlist[]; /* list of message texts */ ++#endif + #endif + + #if MSC |