FreeBASIC  0.91.0
con_pos.c
Go to the documentation of this file.
1 /* implementation of pos(dummy), simply redirects to fb_GetX() */
2 
3 #include "fb.h"
4 
5 /*:::::*/
6 FBCALL int fb_Pos( int dummy )
7 {
8  return fb_GetX();
9 }
10