File: sum.h

    1   /*
    2    * sum.h
    3    *
    4    * Code generation for function 'sum'
    5    *
    6    */
    7   
    8   #ifndef SUM_H
    9   #define SUM_H
   10   
   11   /* Include files */
   12   #include <math.h>
   13   #include <stdio.h>
   14   #include <stdlib.h>
   15   #include <string.h>
   16   #include "mwmathutil.h"
   17   #include "tmwtypes.h"
   18   #include "mex.h"
   19   #include "emlrt.h"
   20   #include "covrt.h"
   21   #include "rtwtypes.h"
   22   #include "gjbf_types.h"
   23   
   24   /* Function Declarations */
   25   extern void b_sum(const real_T x[14112], real_T y[882]);
   26   extern real_T c_sum(const emlrtStack *sp, const real_T x_data[], const int32_T
   27                       x_size[1]);
   28   
   29   #ifdef __WATCOMC__
   30   
   31   #pragma aux c_sum value [8087];
   32   
   33   #endif
   34   
   35   extern void d_sum(const emlrtStack *sp, const emxArray_real_T *x, real_T y[16]);
   36   extern void sum(const real_T x[48], real_T y[16]);
   37   
   38   #endif
   39   
   40   /* End of code generation (sum.h) */
   41