diff options
Diffstat (limited to 'usr/src/tools/cscope-fast/global.h')
-rw-r--r-- | usr/src/tools/cscope-fast/global.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/usr/src/tools/cscope-fast/global.h b/usr/src/tools/cscope-fast/global.h index 01ddae4dfb..2d963983f0 100644 --- a/usr/src/tools/cscope-fast/global.h +++ b/usr/src/tools/cscope-fast/global.h @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -19,23 +18,20 @@ * * CDDL HEADER END */ + +/* + * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. + */ + /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ - /* * cscope - interactive C symbol cross-reference * * global type, data, and function definitions */ -/* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. - */ - -#pragma ident "%Z%%M% %I% %E% SMI" - #include <ctype.h> /* isalpha, isdigit, etc. */ #include <signal.h> /* SIGINT and SIGQUIT */ #include <stdio.h> /* standard I/O package */ @@ -273,7 +269,7 @@ HISTORY *nextcmd(void); void catchint(int sig); int ungetch(int c); int mygetch(void); -int getline(char s[], size_t size, int firstchar, BOOL iscaseless); +int getaline(char s[], size_t size, int firstchar, BOOL iscaseless); void askforchar(void); void askforreturn(void); void shellpath(char *out, int limit, char *in); |