#ifdef AIX_PROD
static char sccsid[] = "@(#)08	1.3  src/examples/pubsex/binop/manager.c, examples.src, os2dce21.dss, 960602a.1 6/26/95 10:57:09";
/*
 *   COMPONENT_NAME: examples.src
 *
 *   FUNCTIONS: binop_add
 *
 *   ORIGINS: 72
 *
 */
#endif /* AIX_PROD */

#include "binop.h"

#ifndef IBMOS2
#define DCEAPI
#endif

void  DCEAPI binop_add(
    /* [in] */ handle_t h,
    /* [in] */ idl_long_int a,
    /* [in] */ idl_long_int b,
    /* [out] */ idl_long_int *c )
{
  *c = a + b;
}

