Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 270263
Collapse All | Expand All

(-)soltools/mkdepend/def.h.orig (-1 / +1 lines)
Lines 154-160 Link Here
154
154
155
char			*copy();
155
char			*copy();
156
char			*base_name();
156
char			*base_name();
157
char			*getline();
157
char			*ooo_getline();
158
char			*isdefined();
158
char			*isdefined();
159
struct filepointer	*getfile();
159
struct filepointer	*getfile();
160
struct inclist		*newinclude();
160
struct inclist		*newinclude();
(-)soltools/mkdepend/main.c.orig (-1 / +1 lines)
Lines 548-554 Link Here
548
 * Get the next line.  We only return lines beginning with '#' since that
548
 * Get the next line.  We only return lines beginning with '#' since that
549
 * is all this program is ever interested in.
549
 * is all this program is ever interested in.
550
 */
550
 */
551
char *getline(filep)
551
char *ooo_getline(filep)
552
	register struct filepointer	*filep;
552
	register struct filepointer	*filep;
553
{
553
{
554
	register char	*p,	/* walking pointer */
554
	register char	*p,	/* walking pointer */
(-)soltools/mkdepend/parse.c.orig (-2 / +2 lines)
Lines 45-51 Link Here
45
	register int	type;
45
	register int	type;
46
	boolean recfailOK;
46
	boolean recfailOK;
47
47
48
	while ((line = getline(filep))) {
48
	while ((line = ooo_getline(filep))) {
49
		switch(type = deftype(line, filep, file_red, file, TRUE, symbols)) {
49
		switch(type = deftype(line, filep, file_red, file, TRUE, symbols)) {
50
		case IF:
50
		case IF:
51
		doif:
51
		doif:
Lines 168-174 Link Here
168
	register char	*line;
168
	register char	*line;
169
	register int	type;
169
	register int	type;
170
170
171
	while ((line = getline(filep))) {
171
	while ((line = ooo_getline(filep))) {
172
		switch(type = deftype(line, filep, file_red, file, FALSE, symbols)) {
172
		switch(type = deftype(line, filep, file_red, file, FALSE, symbols)) {
173
		case IF:
173
		case IF:
174
		case IFFALSE:
174
		case IFFALSE:

Return to bug 270263