cantera/ext/f2c_libs/h_len.c
2012-02-03 23:41:00 +00:00

16 lines
205 B
C

#include "f2c.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef KR_headers
shortint h_len(s, n) char *s; ftnlen n;
#else
shortint h_len(char *s, ftnlen n)
#endif
{
return(n);
}
#ifdef __cplusplus
}
#endif