From 90300f853673b3879ab4d6a60683ff69b564c58b Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 1 Oct 2001 08:41:27 +0000 Subject: + Sync with NetBSD, bringing in feature enhancements. + Convert to ANSI-C function definitions + style(9) Submitted by: kris --- lib/libedit/prompt.h | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'lib/libedit/prompt.h') diff --git a/lib/libedit/prompt.h b/lib/libedit/prompt.h index a624fc0..509c920 100644 --- a/lib/libedit/prompt.h +++ b/lib/libedit/prompt.h @@ -34,26 +34,29 @@ * SUCH DAMAGE. * * @(#)prompt.h 8.1 (Berkeley) 6/4/93 + * $NetBSD: prompt.h,v 1.4 1999/11/12 01:05:07 lukem Exp $ + * $FreeBSD$ */ /* * el.prompt.h: Prompt printing stuff */ #ifndef _h_el_prompt -#define _h_el_prompt +#define _h_el_prompt #include "histedit.h" -typedef char * (*el_pfunc_t) __P((EditLine*)); +typedef char * (*el_pfunc_t)(EditLine*); typedef struct el_prompt_t { - el_pfunc_t p_func; /* Function to return the prompt */ - coord_t p_pos; /* position in the line after prompt */ + el_pfunc_t p_func; /* Function to return the prompt */ + coord_t p_pos; /* position in the line after prompt */ } el_prompt_t; -protected void prompt_print __P((EditLine *)); -protected int prompt_set __P((EditLine *, el_pfunc_t)); -protected int prompt_init __P((EditLine *)); -protected void prompt_end __P((EditLine *)); +protected void prompt_print(EditLine *, int); +protected int prompt_set(EditLine *, el_pfunc_t, int); +protected int prompt_get(EditLine *, el_pfunc_t *, int); +protected int prompt_init(EditLine *); +protected void prompt_end(EditLine *); #endif /* _h_el_prompt */ -- cgit v1.1