replace u_xxxx style, defined <sys/types.h>
replace: u_char -> unsigned char u_short -> unsigned short u_int -> unsigned int u_long (not used) include <sys/types.h> is kept. dicttool.h: fix include guard DICTTOLL -> DICTTOOL addelcmn.c:unsigned int addel_arg() deldic.c:unsigned int deldic() change u_short err -> unsigned int err (used for return value) Signed-off-by: SASANO Takayoshi <uaa@uaa.org.uk>
This commit is contained in:
parent
f5d94e3e41
commit
a9a6c86f12
99 changed files with 1711 additions and 1709 deletions
|
|
@ -272,7 +272,7 @@ beep ()
|
|||
|
||||
|
||||
CursorSet (row, col)
|
||||
u_short row, col;
|
||||
unsigned short row, col;
|
||||
{
|
||||
tputs(tgoto(CM, col - 1, row - 1), 1, outc);
|
||||
Flush ();
|
||||
|
|
@ -304,7 +304,7 @@ int row1, row2;
|
|||
int master_flush_flag = 1;
|
||||
|
||||
CursorRead (row, col)
|
||||
u_short *row, *col;
|
||||
unsigned short *row, *col;
|
||||
{
|
||||
|
||||
int count;
|
||||
|
|
@ -454,7 +454,7 @@ Clear_EOL ()
|
|||
}
|
||||
|
||||
StartGuide (row, col)
|
||||
u_short *row, *col;
|
||||
unsigned short *row, *col;
|
||||
{
|
||||
Conversion *cv;
|
||||
|
||||
|
|
@ -471,7 +471,7 @@ u_short *row, *col;
|
|||
}
|
||||
|
||||
EndGuide (row, col)
|
||||
u_short row, col;
|
||||
unsigned short row, col;
|
||||
{
|
||||
if (status_line) {
|
||||
tputs (FS, 1, outc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue