summaryrefslogtreecommitdiff
path: root/Build/source/utils/pmx/pmx-2.6.18/libf2c/h_len.c
blob: 8b0aea99d26f38216f60294d252dc8cc265f1ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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