mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 07:25:10 -04:00
11 lines
136 B
C
11 lines
136 B
C
|
|
#include "f2c.h"
|
||
|
|
|
||
|
|
#ifdef KR_headers
|
||
|
|
integer i_len(s, n) char *s; ftnlen n;
|
||
|
|
#else
|
||
|
|
integer i_len(char *s, ftnlen n)
|
||
|
|
#endif
|
||
|
|
{
|
||
|
|
return(n);
|
||
|
|
}
|