xref: /csrg-svn/usr.bin/f77/libF77/i_len.c (revision 22914)
110501Sdlw /*
2*22914Skre  * Copyright (c) 1980 Regents of the University of California.
3*22914Skre  * All rights reserved.  The Berkeley software License Agreement
4*22914Skre  * specifies the terms and conditions for redistribution.
5*22914Skre  *
6*22914Skre  *	@(#)i_len.c	5.1	06/07/85
710501Sdlw  */
810501Sdlw 
910501Sdlw long int i_len(s, n)
1010501Sdlw char *s;
1110501Sdlw long int n;
1210501Sdlw {
1310501Sdlw return(n);
1410501Sdlw }
15