Print this page
10120 smatch indenting fixes for usr/src/cmd
Reviewed by: Gergő Doma <domag02@gmail.com>
Portions contributed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
   1 /*
   2  * Copyright 2000 Sun Microsystems, Inc.  All rights reserved.
   3  * Use is subject to license terms.
   4  */
   5 
   6 /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T     */
   7 /*        All Rights Reserved   */
   8 
   9 /*
  10  * Copyright (c) 1980 Regents of the University of California.
  11  * All rights reserved. The Berkeley software License Agreement
  12  * specifies the terms and conditions for redistribution.
  13  */
  14 
  15 #pragma ident   "%Z%%M% %I%     %E% SMI"


  16 
  17 #include <stdio.h>
  18 #include <locale.h>
  19 #include <wctype.h>
  20 #include <widec.h>
  21 #include <euc.h>
  22 #include <getwidth.h>
  23 #include <limits.h>
  24 #include <stdlib.h>
  25 #include <curses.h>
  26 #include <term.h>
  27 #include <string.h>
  28 
  29 #define IESC    L'\033'
  30 #define SO      L'\016'
  31 #define SI      L'\017'
  32 #define HFWD    L'9'
  33 #define HREV    L'8'
  34 #define FREV    L'7'
  35 #define CDUMMY  -1


   1 /*
   2  * Copyright 2000 Sun Microsystems, Inc.  All rights reserved.
   3  * Use is subject to license terms.
   4  */
   5 
   6 /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T     */
   7 /*        All Rights Reserved   */
   8 
   9 /*
  10  * Copyright (c) 1980 Regents of the University of California.
  11  * All rights reserved. The Berkeley software License Agreement
  12  * specifies the terms and conditions for redistribution.
  13  */
  14 
  15 /*
  16  * Copyright (c) 2018, Joyent, Inc.
  17  */
  18 
  19 #include <stdio.h>
  20 #include <locale.h>
  21 #include <wctype.h>
  22 #include <widec.h>
  23 #include <euc.h>
  24 #include <getwidth.h>
  25 #include <limits.h>
  26 #include <stdlib.h>
  27 #include <curses.h>
  28 #include <term.h>
  29 #include <string.h>
  30 
  31 #define IESC    L'\033'
  32 #define SO      L'\016'
  33 #define SI      L'\017'
  34 #define HFWD    L'9'
  35 #define HREV    L'8'
  36 #define FREV    L'7'
  37 #define CDUMMY  -1