blob: 2a5c6f118684d9433e864d14bdbda76491d8563e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
This is the change file for CWEB's CTANGLE under Win32
(Contributed by Fabrice Popineau, February 2002)
Changes necessary for compiling with Borland C/C++
@x section 1
@d banner "This is CTANGLE (Version 4.12)"
@y
@d banner "This is CTANGLE (Version 4.12win32)"
@z
@x section 24
boolean names_match(
name_pointer p, /* points to the proposed match */
const char *first, /* position of first character of string */
size_t l, /* length of identifier */
eight_bits t) /* not used by \.{CTANGLE} */
@y
boolean __cdecl names_match(
name_pointer p, /* points to the proposed match */
const char *first, /* position of first character of string */
size_t l, /* length of identifier */
eight_bits t) /* not used by \.{CTANGLE} */
@z
@x section 25
void
init_node(
name_pointer node)
{
node->equiv=(void *)text_info;
}
@y
void
init_node(
name_pointer node)
{
node->equiv=(void *)text_info;
}
@z
|