mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-16 17:46:40 -05:00
8 lines
126 B
C
8 lines
126 B
C
#ifndef __FNP_T_H__
|
|
#define __FNP_T_H__
|
|
|
|
/* Generic uEMACS function pointer type */
|
|
typedef int (*fnp_t)( int, int) ;
|
|
|
|
#endif
|