diff options
Diffstat (limited to 'unix/f2c/libf2c/h_len.c')
-rw-r--r-- | unix/f2c/libf2c/h_len.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/unix/f2c/libf2c/h_len.c b/unix/f2c/libf2c/h_len.c new file mode 100644 index 00000000..8b0aea99 --- /dev/null +++ b/unix/f2c/libf2c/h_len.c @@ -0,0 +1,16 @@ +#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 |