|
From: Petr S. <pe...@us...> - 2001-01-24 16:24:33
|
Update of /cvsroot/cscope/cscope/src
In directory usw-pr-cvs1:/tmp/cvs-serv1371/src
Modified Files:
constants.h mypopen.c
Log Message:
Replaced new style C comments '//' with old style '/* */' to compile with
old C compilers.
Index: constants.h
===================================================================
RCS file: /cvsroot/cscope/cscope/src/constants.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** constants.h 2000/11/28 21:26:12 1.4
--- constants.h 2001/01/24 16:24:52 1.5
***************
*** 132,136 ****
! #ifndef __FreeBSD__ // Prevent search issues in cscope.out
#if !TERMINFO
#ifndef KEY_BREAK
--- 132,136 ----
! #ifndef __FreeBSD__ /* Prevent search issues in cscope.out */
#if !TERMINFO
#ifndef KEY_BREAK
***************
*** 154,159 ****
#define erasechar() (_tty.sg_erase) /* equivalent */
#define killchar() (_tty.sg_kill) /* equivalent */
! #endif // if UNIXPC
! #endif // if !TERMINFO
! #endif // ifndef __FreeBSD__
--- 154,159 ----
#define erasechar() (_tty.sg_erase) /* equivalent */
#define killchar() (_tty.sg_kill) /* equivalent */
! #endif /* if UNIXPC */
! #endif /* if !TERMINFO */
! #endif /* ifndef __FreeBSD__ */
Index: mypopen.c
===================================================================
RCS file: /cvsroot/cscope/cscope/src/mypopen.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** mypopen.c 2000/12/11 20:48:18 1.4
--- mypopen.c 2001/01/24 16:24:52 1.5
***************
*** 65,71 ****
else
{
! // Ensure that if the fcntl fails and fd is valid, then
! // the file is closed properly. In general this should
! // not happen.
if (fd != -1)
{
--- 65,71 ----
else
{
! /* Ensure that if the fcntl fails and fd is valid, then
! the file is closed properly. In general this should
! not happen. */
if (fd != -1)
{
|