home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_10_01
/
1001023b
< prev
next >
Wrap
Text File
|
1991-11-17
|
454b
|
42 lines
Example of C Functions With C++ Key Word Names
This code doesn't work:
new.cpp:
extern int new();
main()
{
int x = new();
}
So replace it with this code:
example2.h:
#ifndef __cplusplus
extern int new();
#endif
#ifdef __cplusplus
extern int new_one();
#endif
example2.c:
#include "example2.h"
int new_one()
{
return(new());
}
new2.cpp:
#include "example2.h"
main()
{
int x = new_one();
}