Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
autorake / examples / dlcpp / hello.h
Size: Mime:
//
//  hello.h  --  Say "Hello, world!"
//

#ifndef __HELLO_H__
#define __HELLO_H__


#ifdef __cplusplus
extern "C" {
#endif

extern void __attribute__ ((constructor)) hello_init( void);
extern void __attribute__ ((destructor))  hello_fini( void);

extern void hello( void);

#ifdef __cplusplus
}
#endif


#endif