Help for this page

Select Code to Download


  1. or download this
    #define PERL_NO_GET_CONTEXT
    #include "EXTERN.h"
    ...
    
    double
    sin(double x)
    
  2. or download this
    package MyModule;
    use strict;
    ...
    our @EXPORT_OK = qw( sin );
    bootstrap __PACKAGE__;
    1;