Deleted Added
full compact
sh.h (59415) sh.h (61524)
1/* $Header: /src/pub/tcsh/sh.h,v 3.87 2000/01/14 22:57:28 christos Exp $ */
1/* $Header: /src/pub/tcsh/sh.h,v 3.88 2000/06/10 22:06:27 kim Exp $ */
2/*
3 * sh.h: Catch it all globals and includes file!
4 */
5/*-
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

--- 106 unchanged lines hidden (view full) ---

116
117/*
118 * Fundamental definitions which may vary from system to system.
119 *
120 * BUFSIZE The i/o buffering size; also limits word size
121 * MAILINTVL How often to mailcheck; more often is more expensive
122 */
123#ifdef BUFSIZE
2/*
3 * sh.h: Catch it all globals and includes file!
4 */
5/*-
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

--- 106 unchanged lines hidden (view full) ---

116
117/*
118 * Fundamental definitions which may vary from system to system.
119 *
120 * BUFSIZE The i/o buffering size; also limits word size
121 * MAILINTVL How often to mailcheck; more often is more expensive
122 */
123#ifdef BUFSIZE
124# if BUFSIZE < 1024
124# if BUFSIZE < 4096
125# undef BUFSIZE
125# undef BUFSIZE
126# define BUFSIZE 1024 /* buffer size should be no less than this */
126# define BUFSIZE 4096 /* buffer size should be no less than this */
127# endif
128#else
127# endif
128#else
129# define BUFSIZE 1024
129# define BUFSIZE 4096
130#endif /* BUFSIZE */
131
132#define FORKSLEEP 10 /* delay loop on non-interactive fork failure */
133#define MAILINTVL 600 /* 10 minutes */
134
135#ifndef INBUFSIZE
136# define INBUFSIZE 2*BUFSIZE /* Num input characters on the command line */
137#endif /* INBUFSIZE */

--- 1092 unchanged lines hidden ---
130#endif /* BUFSIZE */
131
132#define FORKSLEEP 10 /* delay loop on non-interactive fork failure */
133#define MAILINTVL 600 /* 10 minutes */
134
135#ifndef INBUFSIZE
136# define INBUFSIZE 2*BUFSIZE /* Num input characters on the command line */
137#endif /* INBUFSIZE */

--- 1092 unchanged lines hidden ---