head	1.2;
access;
symbols
	RELENG_2_2_8_RELEASE:1.1.1.1.2.1
	RELENG_3_0_0_RELEASE:1.1.1.1
	RELENG_2_2_7_RELEASE:1.1.1.1.2.1
	RELENG_2_2_6_RELEASE:1.1.1.1.2.1
	RELENG_2_2:1.1.1.1.0.2
	v2_2_4:1.1.1.1
	v2_2_1:1.1.1.1
	GLOBAL:1.1.1;
locks; strict;
comment	@# @;


1.2
date	99.01.18.07.30.26;	author simokawa;	state dead;
branches;
next	1.1;

1.1
date	97.12.15.23.08.08;	author cwt;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	97.12.15.23.08.08;	author cwt;	state Exp;
branches
	1.1.1.1.2.1;
next	;

1.1.1.1.2.1
date	98.02.05.04.41.25;	author cwt;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Merge from verdor branch (v_3_4_2) and remove obsolete files.
@
text
@GLOBAL cannot recognize following macros and functions.

1. Macro which doesn't end with ';'.

   GLOBAL cannot recognize func() after M(a), because M(a) seems to be
   function definition.

	#define M(a)	static char *string = a;

	M(a)

	func() {
		...
	}

   It should be follows.

	#define M(a)	static char *string = a

	M(a);

	func() {
		...
	}

2. Macro which is a renamed function.

	#define func _func

	_func() {
		...
	}
	main() {
		func();
	}

   In fact, main() calls _func() instead of func() but GLOBAL cannot
   recognize it.
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Import of virgin Global v2_2_1 sources
@
text
@@


1.1.1.1.2.1
log
@global v2.24 from -current
@
text
@@
