mirror of
https://github.com/opnsense/src.git
synced 2026-05-21 17:40:35 -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);
|
||
|
|
}
|