This file is indexed.

/usr/lib/sbcl/sb-posix/constants.lisp-temp is in sbcl 2:1.0.55.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
(cl:in-package #:SB-POSIX)
(cl:eval-when (:compile-toplevel)
  (cl:defparameter *integer-sizes* (cl:make-hash-table))
  (cl:setf (cl:gethash 1 *integer-sizes*) 'sb-alien:char)
  (cl:setf (cl:gethash 2 *integer-sizes*) 'sb-alien:short)
  (cl:setf (cl:gethash 8 *integer-sizes*) 'sb-alien:long)
  (cl:setf (cl:gethash 4 *integer-sizes*) 'sb-alien:int)
)
(cl:defconstant AF-INET 2 "IP Protocol family")
(cl:export 'AF-INET)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type UID-T (sb-alien:unsigned 32)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type GID-T (sb-alien:unsigned 32)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type NLINK-T (sb-alien:unsigned 64)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type PID-T (sb-alien:signed 32)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type INO-T (sb-alien:unsigned 64)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type TIME-T (sb-alien:signed 64)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type DEV-T (sb-alien:unsigned 64)))
(cl:defconstant SIGHUP 1 "terminal line hangup.")
(cl:export 'SIGHUP)
(cl:defconstant SIGINT 2 "interrupt program.")
(cl:export 'SIGINT)
(cl:defconstant SIGQUIT 3 "quit program.")
(cl:export 'SIGQUIT)
(cl:defconstant SIGILL 4 "illegal instruction.")
(cl:export 'SIGILL)
(cl:defconstant SIGTRAP 5 "trace trap.")
(cl:export 'SIGTRAP)
(cl:defconstant SIGABRT 6 "abort program (formerly SIGIOT).")
(cl:export 'SIGABRT)
(sb-int:style-warn "Couldn't grovel for SIGEMT (unknown to the C compiler).")
(cl:export 'SIGEMT)
(cl:defconstant SIGFPE 8 "floating-point exception.")
(cl:export 'SIGFPE)
(cl:defconstant SIGKILL 9 "kill program.")
(cl:export 'SIGKILL)
(cl:defconstant SIGBUS 7 "bus error.")
(cl:export 'SIGBUS)
(cl:defconstant SIGSEGV 11 "segmentation violation.")
(cl:export 'SIGSEGV)
(cl:defconstant SIGSYS 31 "non-existent system call invoked.")
(cl:export 'SIGSYS)
(cl:defconstant SIGPIPE 13 "write on a pipe with no reader.")
(cl:export 'SIGPIPE)
(cl:defconstant SIGALRM 14 "real-time timer expired.")
(cl:export 'SIGALRM)
(cl:defconstant SIGTERM 15 "software termination signal.")
(cl:export 'SIGTERM)
(cl:defconstant SIGURG 23 "urgent condition present on socket.")
(cl:export 'SIGURG)
(cl:defconstant SIGSTOP 19 "stop (cannot be caught or ignored).")
(cl:export 'SIGSTOP)
(cl:defconstant SIGTSTP 20 "stop signal generated from keyboard.")
(cl:export 'SIGTSTP)
(cl:defconstant SIGCONT 18 "continue after stop.")
(cl:export 'SIGCONT)
(cl:defconstant SIGCHLD 17 "child status has changed.")
(cl:export 'SIGCHLD)
(cl:defconstant SIGTTIN 21 "background read attempted from control terminal.")
(cl:export 'SIGTTIN)
(cl:defconstant SIGTTOU 22 "background write attempted to control terminal.")
(cl:export 'SIGTTOU)
(cl:defconstant SIGIO 29 "I/O is possible on a descriptor (see fcntl(2)).")
(cl:export 'SIGIO)
(cl:defconstant SIGXCPU 24 "cpu time limit exceeded (see setrlimit(2)).")
(cl:export 'SIGXCPU)
(cl:defconstant SIGXFSZ 25 "file size limit exceeded (see setrlimit(2)).")
(cl:export 'SIGXFSZ)
(cl:defconstant SIGVTALRM 26 "virtual time alarm (see setitimer(2)).")
(cl:export 'SIGVTALRM)
(cl:defconstant SIGPROF 27 "profiling timer alarm (see setitimer(2)).")
(cl:export 'SIGPROF)
(cl:defconstant SIGWINCH 28 "Window size change.")
(cl:export 'SIGWINCH)
(cl:defconstant SIGPWR 30 "Power failure.")
(cl:export 'SIGPWR)
(cl:defconstant SIGUSR1 10 "User defined signal 1.")
(cl:export 'SIGUSR1)
(cl:defconstant SIGUSR2 12 "User defined signal 2.")
(cl:export 'SIGUSR2)
(cl:defconstant SIGRTMIN 34 "Smallest real-time signal number.")
(cl:export 'SIGRTMIN)
(cl:defconstant SIGRTMAX 64 "Largest real-time signal number.")
(cl:export 'SIGRTMAX)
(cl:defconstant EPERM 1 "NIL")
(cl:setf (get 'EPERM 'errno) t)
(cl:export 'EPERM)
(cl:defconstant ENOENT 2 "NIL")
(cl:setf (get 'ENOENT 'errno) t)
(cl:export 'ENOENT)
(cl:defconstant ESRCH 3 "NIL")
(cl:setf (get 'ESRCH 'errno) t)
(cl:export 'ESRCH)
(cl:defconstant EINTR 4 "NIL")
(cl:setf (get 'EINTR 'errno) t)
(cl:export 'EINTR)
(cl:defconstant EIO 5 "NIL")
(cl:setf (get 'EIO 'errno) t)
(cl:export 'EIO)
(cl:defconstant ENXIO 6 "NIL")
(cl:setf (get 'ENXIO 'errno) t)
(cl:export 'ENXIO)
(cl:defconstant E2BIG 7 "NIL")
(cl:setf (get 'E2BIG 'errno) t)
(cl:export 'E2BIG)
(cl:defconstant ENOEXEC 8 "NIL")
(cl:setf (get 'ENOEXEC 'errno) t)
(cl:export 'ENOEXEC)
(cl:defconstant EBADF 9 "NIL")
(cl:setf (get 'EBADF 'errno) t)
(cl:export 'EBADF)
(cl:defconstant ECHILD 10 "NIL")
(cl:setf (get 'ECHILD 'errno) t)
(cl:export 'ECHILD)
(cl:defconstant EAGAIN 11 "NIL")
(cl:setf (get 'EAGAIN 'errno) t)
(cl:export 'EAGAIN)
(cl:defconstant ENOMEM 12 "NIL")
(cl:setf (get 'ENOMEM 'errno) t)
(cl:export 'ENOMEM)
(cl:defconstant EACCES 13 "NIL")
(cl:setf (get 'EACCES 'errno) t)
(cl:export 'EACCES)
(cl:defconstant EFAULT 14 "NIL")
(cl:setf (get 'EFAULT 'errno) t)
(cl:export 'EFAULT)
(cl:defconstant ENOTBLK 15 "NIL")
(cl:setf (get 'ENOTBLK 'errno) t)
(cl:export 'ENOTBLK)
(cl:defconstant EBUSY 16 "NIL")
(cl:setf (get 'EBUSY 'errno) t)
(cl:export 'EBUSY)
(cl:defconstant EEXIST 17 "NIL")
(cl:setf (get 'EEXIST 'errno) t)
(cl:export 'EEXIST)
(cl:defconstant EXDEV 18 "NIL")
(cl:setf (get 'EXDEV 'errno) t)
(cl:export 'EXDEV)
(cl:defconstant ENODEV 19 "NIL")
(cl:setf (get 'ENODEV 'errno) t)
(cl:export 'ENODEV)
(cl:defconstant ENOTDIR 20 "NIL")
(cl:setf (get 'ENOTDIR 'errno) t)
(cl:export 'ENOTDIR)
(cl:defconstant EISDIR 21 "NIL")
(cl:setf (get 'EISDIR 'errno) t)
(cl:export 'EISDIR)
(cl:defconstant EINVAL 22 "NIL")
(cl:setf (get 'EINVAL 'errno) t)
(cl:export 'EINVAL)
(cl:defconstant ENFILE 23 "NIL")
(cl:setf (get 'ENFILE 'errno) t)
(cl:export 'ENFILE)
(cl:defconstant EMFILE 24 "NIL")
(cl:setf (get 'EMFILE 'errno) t)
(cl:export 'EMFILE)
(cl:defconstant ENOTTY 25 "NIL")
(cl:setf (get 'ENOTTY 'errno) t)
(cl:export 'ENOTTY)
(cl:defconstant ETXTBSY 26 "NIL")
(cl:setf (get 'ETXTBSY 'errno) t)
(cl:export 'ETXTBSY)
(cl:defconstant EFBIG 27 "NIL")
(cl:setf (get 'EFBIG 'errno) t)
(cl:export 'EFBIG)
(cl:defconstant ENOSPC 28 "NIL")
(cl:setf (get 'ENOSPC 'errno) t)
(cl:export 'ENOSPC)
(cl:defconstant ESPIPE 29 "NIL")
(cl:setf (get 'ESPIPE 'errno) t)
(cl:export 'ESPIPE)
(cl:defconstant EROFS 30 "NIL")
(cl:setf (get 'EROFS 'errno) t)
(cl:export 'EROFS)
(cl:defconstant EMLINK 31 "NIL")
(cl:setf (get 'EMLINK 'errno) t)
(cl:export 'EMLINK)
(cl:defconstant EPIPE 32 "NIL")
(cl:setf (get 'EPIPE 'errno) t)
(cl:export 'EPIPE)
(cl:defconstant EDOM 33 "NIL")
(cl:setf (get 'EDOM 'errno) t)
(cl:export 'EDOM)
(cl:defconstant ERANGE 34 "NIL")
(cl:setf (get 'ERANGE 'errno) t)
(cl:export 'ERANGE)
(cl:defconstant EDEADLK 35 "NIL")
(cl:setf (get 'EDEADLK 'errno) t)
(cl:export 'EDEADLK)
(cl:defconstant ENAMETOOLONG 36 "NIL")
(cl:setf (get 'ENAMETOOLONG 'errno) t)
(cl:export 'ENAMETOOLONG)
(cl:defconstant ENOLCK 37 "NIL")
(cl:setf (get 'ENOLCK 'errno) t)
(cl:export 'ENOLCK)
(cl:defconstant ENOSYS 38 "NIL")
(cl:setf (get 'ENOSYS 'errno) t)
(cl:export 'ENOSYS)
(cl:defconstant ENOTEMPTY 39 "NIL")
(cl:setf (get 'ENOTEMPTY 'errno) t)
(cl:export 'ENOTEMPTY)
(cl:defconstant ELOOP 40 "NIL")
(cl:setf (get 'ELOOP 'errno) t)
(cl:export 'ELOOP)
(cl:defconstant EWOULDBLOCK 11 "NIL")
(cl:setf (get 'EWOULDBLOCK 'errno) t)
(cl:export 'EWOULDBLOCK)
(cl:defconstant ENOMSG 42 "NIL")
(cl:setf (get 'ENOMSG 'errno) t)
(cl:export 'ENOMSG)
(cl:defconstant EIDRM 43 "NIL")
(cl:setf (get 'EIDRM 'errno) t)
(cl:export 'EIDRM)
(cl:defconstant ECHRNG 44 "NIL")
(cl:setf (get 'ECHRNG 'errno) t)
(cl:export 'ECHRNG)
(cl:defconstant EL2NSYNC 45 "NIL")
(cl:setf (get 'EL2NSYNC 'errno) t)
(cl:export 'EL2NSYNC)
(cl:defconstant EL3HLT 46 "NIL")
(cl:setf (get 'EL3HLT 'errno) t)
(cl:export 'EL3HLT)
(cl:defconstant EL3RST 47 "NIL")
(cl:setf (get 'EL3RST 'errno) t)
(cl:export 'EL3RST)
(cl:defconstant ELNRNG 48 "NIL")
(cl:setf (get 'ELNRNG 'errno) t)
(cl:export 'ELNRNG)
(cl:defconstant EUNATCH 49 "NIL")
(cl:setf (get 'EUNATCH 'errno) t)
(cl:export 'EUNATCH)
(cl:defconstant ENOCSI 50 "NIL")
(cl:setf (get 'ENOCSI 'errno) t)
(cl:export 'ENOCSI)
(cl:defconstant EL2HLT 51 "NIL")
(cl:setf (get 'EL2HLT 'errno) t)
(cl:export 'EL2HLT)
(cl:defconstant EBADE 52 "NIL")
(cl:setf (get 'EBADE 'errno) t)
(cl:export 'EBADE)
(cl:defconstant EBADR 53 "NIL")
(cl:setf (get 'EBADR 'errno) t)
(cl:export 'EBADR)
(cl:defconstant EXFULL 54 "NIL")
(cl:setf (get 'EXFULL 'errno) t)
(cl:export 'EXFULL)
(cl:defconstant ENOANO 55 "NIL")
(cl:setf (get 'ENOANO 'errno) t)
(cl:export 'ENOANO)
(cl:defconstant EBADRQC 56 "NIL")
(cl:setf (get 'EBADRQC 'errno) t)
(cl:export 'EBADRQC)
(cl:defconstant EBADSLT 57 "NIL")
(cl:setf (get 'EBADSLT 'errno) t)
(cl:export 'EBADSLT)
(cl:defconstant EDEADLOCK 35 "NIL")
(cl:setf (get 'EDEADLOCK 'errno) t)
(cl:export 'EDEADLOCK)
(cl:defconstant EBFONT 59 "NIL")
(cl:setf (get 'EBFONT 'errno) t)
(cl:export 'EBFONT)
(cl:defconstant ENOSTR 60 "NIL")
(cl:setf (get 'ENOSTR 'errno) t)
(cl:export 'ENOSTR)
(cl:defconstant ENODATA 61 "NIL")
(cl:setf (get 'ENODATA 'errno) t)
(cl:export 'ENODATA)
(cl:defconstant ETIME 62 "NIL")
(cl:setf (get 'ETIME 'errno) t)
(cl:export 'ETIME)
(cl:defconstant ENOSR 63 "NIL")
(cl:setf (get 'ENOSR 'errno) t)
(cl:export 'ENOSR)
(cl:defconstant ENONET 64 "NIL")
(cl:setf (get 'ENONET 'errno) t)
(cl:export 'ENONET)
(cl:defconstant ENOPKG 65 "NIL")
(cl:setf (get 'ENOPKG 'errno) t)
(cl:export 'ENOPKG)
(cl:defconstant EREMOTE 66 "NIL")
(cl:setf (get 'EREMOTE 'errno) t)
(cl:export 'EREMOTE)
(cl:defconstant ENOLINK 67 "NIL")
(cl:setf (get 'ENOLINK 'errno) t)
(cl:export 'ENOLINK)
(cl:defconstant EADV 68 "NIL")
(cl:setf (get 'EADV 'errno) t)
(cl:export 'EADV)
(cl:defconstant ESRMNT 69 "NIL")
(cl:setf (get 'ESRMNT 'errno) t)
(cl:export 'ESRMNT)
(cl:defconstant ECOMM 70 "NIL")
(cl:setf (get 'ECOMM 'errno) t)
(cl:export 'ECOMM)
(cl:defconstant EPROTO 71 "NIL")
(cl:setf (get 'EPROTO 'errno) t)
(cl:export 'EPROTO)
(cl:defconstant EMULTIHOP 72 "NIL")
(cl:setf (get 'EMULTIHOP 'errno) t)
(cl:export 'EMULTIHOP)
(cl:defconstant EDOTDOT 73 "NIL")
(cl:setf (get 'EDOTDOT 'errno) t)
(cl:export 'EDOTDOT)
(cl:defconstant EBADMSG 74 "NIL")
(cl:setf (get 'EBADMSG 'errno) t)
(cl:export 'EBADMSG)
(cl:defconstant EOVERFLOW 75 "NIL")
(cl:setf (get 'EOVERFLOW 'errno) t)
(cl:export 'EOVERFLOW)
(cl:defconstant ENOTUNIQ 76 "NIL")
(cl:setf (get 'ENOTUNIQ 'errno) t)
(cl:export 'ENOTUNIQ)
(cl:defconstant EBADFD 77 "NIL")
(cl:setf (get 'EBADFD 'errno) t)
(cl:export 'EBADFD)
(cl:defconstant EREMCHG 78 "NIL")
(cl:setf (get 'EREMCHG 'errno) t)
(cl:export 'EREMCHG)
(cl:defconstant ELIBACC 79 "NIL")
(cl:setf (get 'ELIBACC 'errno) t)
(cl:export 'ELIBACC)
(cl:defconstant ELIBBAD 80 "NIL")
(cl:setf (get 'ELIBBAD 'errno) t)
(cl:export 'ELIBBAD)
(cl:defconstant ELIBSCN 81 "NIL")
(cl:setf (get 'ELIBSCN 'errno) t)
(cl:export 'ELIBSCN)
(cl:defconstant ELIBMAX 82 "NIL")
(cl:setf (get 'ELIBMAX 'errno) t)
(cl:export 'ELIBMAX)
(cl:defconstant ELIBEXEC 83 "NIL")
(cl:setf (get 'ELIBEXEC 'errno) t)
(cl:export 'ELIBEXEC)
(cl:defconstant EILSEQ 84 "NIL")
(cl:setf (get 'EILSEQ 'errno) t)
(cl:export 'EILSEQ)
(cl:defconstant ERESTART 85 "NIL")
(cl:setf (get 'ERESTART 'errno) t)
(cl:export 'ERESTART)
(cl:defconstant ESTRPIPE 86 "NIL")
(cl:setf (get 'ESTRPIPE 'errno) t)
(cl:export 'ESTRPIPE)
(cl:defconstant EUSERS 87 "NIL")
(cl:setf (get 'EUSERS 'errno) t)
(cl:export 'EUSERS)
(cl:defconstant ENOTSOCK 88 "NIL")
(cl:setf (get 'ENOTSOCK 'errno) t)
(cl:export 'ENOTSOCK)
(cl:defconstant EDESTADDRREQ 89 "NIL")
(cl:setf (get 'EDESTADDRREQ 'errno) t)
(cl:export 'EDESTADDRREQ)
(cl:defconstant EMSGSIZE 90 "NIL")
(cl:setf (get 'EMSGSIZE 'errno) t)
(cl:export 'EMSGSIZE)
(cl:defconstant EPROTOTYPE 91 "NIL")
(cl:setf (get 'EPROTOTYPE 'errno) t)
(cl:export 'EPROTOTYPE)
(cl:defconstant ENOPROTOOPT 92 "NIL")
(cl:setf (get 'ENOPROTOOPT 'errno) t)
(cl:export 'ENOPROTOOPT)
(cl:defconstant EPROTONOSUPPORT 93 "NIL")
(cl:setf (get 'EPROTONOSUPPORT 'errno) t)
(cl:export 'EPROTONOSUPPORT)
(cl:defconstant ESOCKTNOSUPPORT 94 "NIL")
(cl:setf (get 'ESOCKTNOSUPPORT 'errno) t)
(cl:export 'ESOCKTNOSUPPORT)
(cl:defconstant EOPNOTSUPP 95 "NIL")
(cl:setf (get 'EOPNOTSUPP 'errno) t)
(cl:export 'EOPNOTSUPP)
(cl:defconstant EPFNOSUPPORT 96 "NIL")
(cl:setf (get 'EPFNOSUPPORT 'errno) t)
(cl:export 'EPFNOSUPPORT)
(cl:defconstant EAFNOSUPPORT 97 "NIL")
(cl:setf (get 'EAFNOSUPPORT 'errno) t)
(cl:export 'EAFNOSUPPORT)
(cl:defconstant EADDRINUSE 98 "NIL")
(cl:setf (get 'EADDRINUSE 'errno) t)
(cl:export 'EADDRINUSE)
(cl:defconstant EADDRNOTAVAIL 99 "NIL")
(cl:setf (get 'EADDRNOTAVAIL 'errno) t)
(cl:export 'EADDRNOTAVAIL)
(cl:defconstant ENETDOWN 100 "NIL")
(cl:setf (get 'ENETDOWN 'errno) t)
(cl:export 'ENETDOWN)
(cl:defconstant ENETUNREACH 101 "NIL")
(cl:setf (get 'ENETUNREACH 'errno) t)
(cl:export 'ENETUNREACH)
(cl:defconstant ENETRESET 102 "NIL")
(cl:setf (get 'ENETRESET 'errno) t)
(cl:export 'ENETRESET)
(cl:defconstant ECONNABORTED 103 "NIL")
(cl:setf (get 'ECONNABORTED 'errno) t)
(cl:export 'ECONNABORTED)
(cl:defconstant ECONNRESET 104 "NIL")
(cl:setf (get 'ECONNRESET 'errno) t)
(cl:export 'ECONNRESET)
(cl:defconstant ENOBUFS 105 "NIL")
(cl:setf (get 'ENOBUFS 'errno) t)
(cl:export 'ENOBUFS)
(cl:defconstant EISCONN 106 "NIL")
(cl:setf (get 'EISCONN 'errno) t)
(cl:export 'EISCONN)
(cl:defconstant ENOTCONN 107 "NIL")
(cl:setf (get 'ENOTCONN 'errno) t)
(cl:export 'ENOTCONN)
(cl:defconstant ESHUTDOWN 108 "NIL")
(cl:setf (get 'ESHUTDOWN 'errno) t)
(cl:export 'ESHUTDOWN)
(cl:defconstant ETOOMANYREFS 109 "NIL")
(cl:setf (get 'ETOOMANYREFS 'errno) t)
(cl:export 'ETOOMANYREFS)
(cl:defconstant ETIMEDOUT 110 "NIL")
(cl:setf (get 'ETIMEDOUT 'errno) t)
(cl:export 'ETIMEDOUT)
(cl:defconstant ECONNREFUSED 111 "NIL")
(cl:setf (get 'ECONNREFUSED 'errno) t)
(cl:export 'ECONNREFUSED)
(cl:defconstant EHOSTDOWN 112 "NIL")
(cl:setf (get 'EHOSTDOWN 'errno) t)
(cl:export 'EHOSTDOWN)
(cl:defconstant EHOSTUNREACH 113 "NIL")
(cl:setf (get 'EHOSTUNREACH 'errno) t)
(cl:export 'EHOSTUNREACH)
(cl:defconstant EALREADY 114 "NIL")
(cl:setf (get 'EALREADY 'errno) t)
(cl:export 'EALREADY)
(cl:defconstant EINPROGRESS 115 "NIL")
(cl:setf (get 'EINPROGRESS 'errno) t)
(cl:export 'EINPROGRESS)
(cl:defconstant ESTALE 116 "NIL")
(cl:setf (get 'ESTALE 'errno) t)
(cl:export 'ESTALE)
(cl:defconstant EUCLEAN 117 "NIL")
(cl:setf (get 'EUCLEAN 'errno) t)
(cl:export 'EUCLEAN)
(cl:defconstant ENOTNAM 118 "NIL")
(cl:setf (get 'ENOTNAM 'errno) t)
(cl:export 'ENOTNAM)
(cl:defconstant ENAVAIL 119 "NIL")
(cl:setf (get 'ENAVAIL 'errno) t)
(cl:export 'ENAVAIL)
(cl:defconstant EREMOTEIO 121 "NIL")
(cl:setf (get 'EREMOTEIO 'errno) t)
(cl:export 'EREMOTEIO)
(cl:defconstant EDQUOT 122 "NIL")
(cl:setf (get 'EDQUOT 'errno) t)
(cl:export 'EDQUOT)
(cl:defconstant ENOMEDIUM 123 "NIL")
(cl:setf (get 'ENOMEDIUM 'errno) t)
(cl:export 'ENOMEDIUM)
(cl:defconstant EMEDIUMTYPE 124 "NIL")
(cl:setf (get 'EMEDIUMTYPE 'errno) t)
(cl:export 'EMEDIUMTYPE)
(cl:defconstant WNOHANG 1 "NIL")
(cl:export 'WNOHANG)
(cl:defconstant WUNTRACED 2 "NIL")
(cl:export 'WUNTRACED)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type MODE-T (sb-alien:unsigned 32)))
(cl:defconstant S-IFMT 61440 "NIL")
(cl:export 'S-IFMT)
(cl:defconstant S-IFIFO 4096 "NIL")
(cl:export 'S-IFIFO)
(cl:defconstant S-IFCHR 8192 "NIL")
(cl:export 'S-IFCHR)
(cl:defconstant S-IFDIR 16384 "NIL")
(cl:export 'S-IFDIR)
(cl:defconstant S-IFBLK 24576 "NIL")
(cl:export 'S-IFBLK)
(cl:defconstant S-IFREG 32768 "NIL")
(cl:export 'S-IFREG)
(cl:defconstant S-IFLNK 40960 "NIL")
(cl:export 'S-IFLNK)
(cl:defconstant S-IFSOCK 49152 "NIL")
(cl:export 'S-IFSOCK)
(sb-int:style-warn "Couldn't grovel for S_IFWHT (unknown to the C compiler).")
(cl:export 'S-IFWHT)
(cl:defconstant S-ISUID 2048 "NIL")
(cl:export 'S-ISUID)
(cl:defconstant S-ISGID 1024 "NIL")
(cl:export 'S-ISGID)
(cl:defconstant S-ISVTX 512 "NIL")
(cl:export 'S-ISVTX)
(cl:defconstant S-IRUSR 256 "NIL")
(cl:export 'S-IRUSR)
(cl:defconstant S-IWUSR 128 "NIL")
(cl:export 'S-IWUSR)
(cl:defconstant S-IXUSR 64 "NIL")
(cl:export 'S-IXUSR)
(cl:defconstant S-IREAD 256 "NIL")
(cl:export 'S-IREAD)
(cl:defconstant S-IWRITE 128 "NIL")
(cl:export 'S-IWRITE)
(cl:defconstant S-IEXEC 64 "NIL")
(cl:export 'S-IEXEC)
(cl:defconstant S-IRGRP 32 "NIL")
(cl:export 'S-IRGRP)
(cl:defconstant S-IWGRP 16 "NIL")
(cl:export 'S-IWGRP)
(cl:defconstant S-IXGRP 8 "NIL")
(cl:export 'S-IXGRP)
(cl:defconstant S-IROTH 4 "NIL")
(cl:export 'S-IROTH)
(cl:defconstant S-IWOTH 2 "NIL")
(cl:export 'S-IWOTH)
(cl:defconstant S-IXOTH 1 "NIL")
(cl:export 'S-IXOTH)
(cl:defconstant R-OK 4 "NIL")
(cl:export 'R-OK)
(cl:defconstant W-OK 2 "NIL")
(cl:export 'W-OK)
(cl:defconstant X-OK 1 "NIL")
(cl:export 'X-OK)
(cl:defconstant F-OK 0 "NIL")
(cl:export 'F-OK)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type OFF-T (sb-alien:signed 64)))
(cl:defconstant PROT-NONE 0 "mmap: no protection")
(cl:export 'PROT-NONE)
(cl:defconstant PROT-READ 1 "mmap: read protection")
(cl:export 'PROT-READ)
(cl:defconstant PROT-WRITE 2 "mmap: write protection")
(cl:export 'PROT-WRITE)
(cl:defconstant PROT-EXEC 4 "mmap: execute protection")
(cl:export 'PROT-EXEC)
(cl:defconstant MAP-SHARED 1 "mmap: shared memory")
(cl:export 'MAP-SHARED)
(cl:defconstant MAP-PRIVATE 2 "mmap: private mapping")
(cl:export 'MAP-PRIVATE)
(cl:defconstant MAP-FIXED 16 "mmap: map at given location")
(cl:export 'MAP-FIXED)
(cl:defconstant MS-ASYNC 1 "msync: return immediately")
(cl:export 'MS-ASYNC)
(cl:defconstant MS-SYNC 4 "msync: perform synchronous writes")
(cl:export 'MS-SYNC)
(cl:defconstant MS-INVALIDATE 2 "msync: invalidate all cached data")
(cl:export 'MS-INVALIDATE)
(cl:defconstant MCL-CURRENT 1 "mlockall: lock all pages which are currently mapped into the address space of the process.")
(cl:export 'MCL-CURRENT)
(cl:defconstant MCL-FUTURE 2 "mlockall: lock all pages which will become mapped into the address space of the process in the future.")
(cl:export 'MCL-FUTURE)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct DIRENT 280
 (INO INO-T "ino_t"
  0
  8)
 (NAME C-STRING "char *"
  19
  256)
))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-PASSWD 48
 (NAME C-STRING-POINTER "char *"
  0
  8)
 (PASSWD C-STRING-POINTER "char *"
  8
  8)
 (UID UID-T "uid_t"
  16
  4)
 (GID GID-T "gid_t"
  20
  4)
 (GECOS C-STRING-POINTER "char *"
  24
  8)
 (DIR C-STRING-POINTER "char *"
  32
  8)
 (SHELL C-STRING-POINTER "char *"
  40
  8)
))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-GROUP 32
 (NAME C-STRING-POINTER "char *"
  0
  8)
 (PASSWD C-STRING-POINTER "char *"
  8
  8)
 (GID GID-T "gid_t"
  16
  4)
))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-STAT 144
 (MODE MODE-T "mode_t"
  24
  4)
 (INO INO-T "ino_t"
  8
  8)
 (DEV DEV-T "dev_t"
  0
  8)
 (NLINK NLINK-T "nlink_t"
  16
  8)
 (UID UID-T "uid_t"
  28
  4)
 (RDEV DEV-T "dev_t"
  40
  8)
 (GID GID-T "gid_t"
  32
  4)
 (SIZE OFF-T "off_t"
  48
  8)
 (ATIME TIME-T "time_t"
  72
  8)
 (MTIME TIME-T "time_t"
  88
  8)
 (CTIME TIME-T "time_t"
  104
  8)
))
(cl:defconstant O-RDONLY 0 "NIL")
(cl:export 'O-RDONLY)
(cl:defconstant O-WRONLY 1 "NIL")
(cl:export 'O-WRONLY)
(cl:defconstant O-RDWR 2 "NIL")
(cl:export 'O-RDWR)
(cl:defconstant O-CREAT 64 "NIL")
(cl:export 'O-CREAT)
(cl:defconstant O-EXCL 128 "NIL")
(cl:export 'O-EXCL)
(cl:defconstant O-NOCTTY 256 "NIL")
(cl:export 'O-NOCTTY)
(cl:defconstant O-TRUNC 512 "NIL")
(cl:export 'O-TRUNC)
(cl:defconstant O-APPEND 1024 "NIL")
(cl:export 'O-APPEND)
(cl:defconstant O-NONBLOCK 2048 "NIL")
(cl:export 'O-NONBLOCK)
(cl:defconstant O-NDELAY 2048 "NIL")
(cl:export 'O-NDELAY)
(cl:defconstant O-SYNC 1052672 "NIL")
(cl:export 'O-SYNC)
(cl:defconstant O-NOFOLLOW 131072 "NIL")
(cl:export 'O-NOFOLLOW)
(cl:defconstant O-DIRECTORY 65536 "NIL")
(cl:export 'O-DIRECTORY)
(sb-int:style-warn "Couldn't grovel for O_DIRECT (unknown to the C compiler).")
(cl:export 'O-DIRECT)
(cl:defconstant O-ASYNC 8192 "NIL")
(cl:export 'O-ASYNC)
(cl:defconstant O-LARGEFILE 0 "NIL")
(cl:export 'O-LARGEFILE)
(cl:defconstant O-DSYNC 4096 "NIL")
(cl:export 'O-DSYNC)
(cl:defconstant O-RSYNC 1052672 "NIL")
(cl:export 'O-RSYNC)
(cl:defconstant SEEK-SET 0 "NIL")
(cl:export 'SEEK-SET)
(cl:defconstant SEEK-CUR 1 "NIL")
(cl:export 'SEEK-CUR)
(cl:defconstant SEEK-END 2 "NIL")
(cl:export 'SEEK-END)
(cl:defconstant F-DUPFD 0 "NIL")
(cl:export 'F-DUPFD)
(cl:defconstant F-GETFD 1 "NIL")
(cl:export 'F-GETFD)
(cl:defconstant F-SETFD 2 "NIL")
(cl:export 'F-SETFD)
(cl:defconstant F-GETFL 3 "NIL")
(cl:export 'F-GETFL)
(cl:defconstant F-SETFL 4 "NIL")
(cl:export 'F-SETFL)
(cl:defconstant F-GETLK 5 "NIL")
(cl:export 'F-GETLK)
(cl:defconstant F-SETLK 6 "NIL")
(cl:export 'F-SETLK)
(cl:defconstant F-SETLKW 7 "NIL")
(cl:export 'F-SETLKW)
(cl:defconstant F-GETOWN 9 "NIL")
(cl:export 'F-GETOWN)
(cl:defconstant F-SETOWN 8 "NIL")
(cl:export 'F-SETOWN)
(cl:defconstant F-RDLCK 0 "NIL")
(cl:export 'F-RDLCK)
(cl:defconstant F-WRLCK 1 "NIL")
(cl:export 'F-WRLCK)
(cl:defconstant F-UNLCK 2 "NIL")
(cl:export 'F-UNLCK)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-FLOCK 32
 (TYPE SHORT "short"
  0
  2)
 (WHENCE SHORT "short"
  2
  2)
 (START OFF-T "off_t"
  8
  8)
 (LEN OFF-T "off_t"
  16
  8)
 (PID PID-T "pid_t"
  24
  4)
))
(cl:defconstant F-LOCK 1 "NIL")
(cl:export 'F-LOCK)
(cl:defconstant F-TLOCK 2 "NIL")
(cl:export 'F-TLOCK)
(cl:defconstant F-ULOCK 0 "NIL")
(cl:export 'F-ULOCK)
(cl:defconstant F-TEST 3 "NIL")
(cl:export 'F-TEST)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type CC-T (sb-alien:unsigned 8)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type SPEED-T (sb-alien:unsigned 32)))
(cl:export 'SPEED-T)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type TCFLAG-T (sb-alien:unsigned 32)))
(cl:export 'TCFLAG-T)
(cl:defconstant NCCS 32 "NIL")
(cl:export 'NCCS)
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-TERMIOS 60
 (IFLAG TCFLAG-T "tcflag_t"
  0
  4)
 (OFLAG TCFLAG-T "tcflag_t"
  4
  4)
 (CFLAG TCFLAG-T "tcflag_t"
  8
  4)
 (LFLAG TCFLAG-T "tcflag_t"
  12
  4)
 (CC (ARRAY CC-T) "cc_t"
  17
  32)
))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-alien:define-alien-type SUSECONDS-T (sb-alien:signed 64)))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-UTIMBUF 16
 (ACTIME TIME-T "time_t"
  0
  8)
 (MODTIME TIME-T "time_t"
  8
  8)
))
(cl:eval-when (:compile-toplevel :load-toplevel :execute) (sb-grovel::define-c-struct ALIEN-TIMEVAL 16
 (SEC TIME-T "time_t"
  0
  8)
 (USEC SUSECONDS-T "suseconds_t"
  8
  8)
))
(cl:defconstant VEOF 4 "NIL")
(cl:export 'VEOF)
(cl:defconstant VEOL 11 "NIL")
(cl:export 'VEOL)
(cl:defconstant VERASE 2 "NIL")
(cl:export 'VERASE)
(cl:defconstant VINTR 0 "NIL")
(cl:export 'VINTR)
(cl:defconstant VKILL 3 "NIL")
(cl:export 'VKILL)
(cl:defconstant VMIN 6 "NIL")
(cl:export 'VMIN)
(cl:defconstant VQUIT 1 "NIL")
(cl:export 'VQUIT)
(cl:defconstant VSTART 8 "NIL")
(cl:export 'VSTART)
(cl:defconstant VSTOP 9 "NIL")
(cl:export 'VSTOP)
(cl:defconstant VSUSP 10 "NIL")
(cl:export 'VSUSP)
(cl:defconstant VTIME 5 "NIL")
(cl:export 'VTIME)
(cl:defconstant VDISABLE 0 "NIL")
(cl:export 'VDISABLE)
(cl:defconstant BRKINT 2 "NIL")
(cl:export 'BRKINT)
(cl:defconstant ICRNL 256 "NIL")
(cl:export 'ICRNL)
(cl:defconstant IGNBRK 1 "NIL")
(cl:export 'IGNBRK)
(cl:defconstant IGNCR 128 "NIL")
(cl:export 'IGNCR)
(cl:defconstant IGNPAR 4 "NIL")
(cl:export 'IGNPAR)
(cl:defconstant INLCR 64 "NIL")
(cl:export 'INLCR)
(cl:defconstant INPCK 16 "NIL")
(cl:export 'INPCK)
(cl:defconstant ISTRIP 32 "NIL")
(cl:export 'ISTRIP)
(cl:defconstant IXOFF 4096 "NIL")
(cl:export 'IXOFF)
(cl:defconstant IXON 1024 "NIL")
(cl:export 'IXON)
(cl:defconstant PARMRK 8 "NIL")
(cl:export 'PARMRK)
(cl:defconstant OPOST 1 "NIL")
(cl:export 'OPOST)
(cl:defconstant OCRNL 8 "NIL")
(cl:export 'OCRNL)
(cl:defconstant ONOCR 16 "NIL")
(cl:export 'ONOCR)
(cl:defconstant ONLRET 32 "NIL")
(cl:export 'ONLRET)
(cl:defconstant OFDEL 128 "NIL")
(cl:export 'OFDEL)
(cl:defconstant OFILL 64 "NIL")
(cl:export 'OFILL)
(cl:defconstant NLDLY 256 "NIL")
(cl:export 'NLDLY)
(cl:defconstant NL0 0 "NIL")
(cl:export 'NL0)
(cl:defconstant NL1 256 "NIL")
(cl:export 'NL1)
(cl:defconstant CRDLY 1536 "NIL")
(cl:export 'CRDLY)
(cl:defconstant CR0 0 "NIL")
(cl:export 'CR0)
(cl:defconstant CR1 512 "NIL")
(cl:export 'CR1)
(cl:defconstant CR2 1024 "NIL")
(cl:export 'CR2)
(cl:defconstant CR3 1536 "NIL")
(cl:export 'CR3)
(cl:defconstant TABDLY 6144 "NIL")
(cl:export 'TABDLY)
(cl:defconstant TAB0 0 "NIL")
(cl:export 'TAB0)
(cl:defconstant TAB1 2048 "NIL")
(cl:export 'TAB1)
(cl:defconstant TAB2 4096 "NIL")
(cl:export 'TAB2)
(cl:defconstant TAB3 6144 "NIL")
(cl:export 'TAB3)
(cl:defconstant BSDLY 8192 "NIL")
(cl:export 'BSDLY)
(cl:defconstant BS0 0 "NIL")
(cl:export 'BS0)
(cl:defconstant BS1 8192 "NIL")
(cl:export 'BS1)
(cl:defconstant VTDLY 16384 "NIL")
(cl:export 'VTDLY)
(cl:defconstant VT0 0 "NIL")
(cl:export 'VT0)
(cl:defconstant VT1 16384 "NIL")
(cl:export 'VT1)
(cl:defconstant FFDLY 32768 "NIL")
(cl:export 'FFDLY)
(cl:defconstant FF0 0 "NIL")
(cl:export 'FF0)
(cl:defconstant FF1 32768 "NIL")
(cl:export 'FF1)
(cl:defconstant B0 0 "NIL")
(cl:export 'B0)
(cl:defconstant B50 1 "NIL")
(cl:export 'B50)
(cl:defconstant B75 2 "NIL")
(cl:export 'B75)
(cl:defconstant B110 3 "NIL")
(cl:export 'B110)
(cl:defconstant B134 4 "NIL")
(cl:export 'B134)
(cl:defconstant B150 5 "NIL")
(cl:export 'B150)
(cl:defconstant B200 6 "NIL")
(cl:export 'B200)
(cl:defconstant B300 7 "NIL")
(cl:export 'B300)
(cl:defconstant B600 8 "NIL")
(cl:export 'B600)
(cl:defconstant B1200 9 "NIL")
(cl:export 'B1200)
(cl:defconstant B1800 10 "NIL")
(cl:export 'B1800)
(cl:defconstant B2400 11 "NIL")
(cl:export 'B2400)
(cl:defconstant B4800 12 "NIL")
(cl:export 'B4800)
(cl:defconstant B9600 13 "NIL")
(cl:export 'B9600)
(cl:defconstant B19200 14 "NIL")
(cl:export 'B19200)
(cl:defconstant B38400 15 "NIL")
(cl:export 'B38400)
(cl:defconstant B57600 4097 "NIL")
(cl:export 'B57600)
(cl:defconstant B115200 4098 "NIL")
(cl:export 'B115200)
(cl:defconstant B230400 4099 "NIL")
(cl:export 'B230400)
(cl:defconstant CSIZE 48 "NIL")
(cl:export 'CSIZE)
(cl:defconstant CS5 0 "NIL")
(cl:export 'CS5)
(cl:defconstant CS6 16 "NIL")
(cl:export 'CS6)
(cl:defconstant CS7 32 "NIL")
(cl:export 'CS7)
(cl:defconstant CS8 48 "NIL")
(cl:export 'CS8)
(cl:defconstant CSTOPB 64 "NIL")
(cl:export 'CSTOPB)
(cl:defconstant CREAD 128 "NIL")
(cl:export 'CREAD)
(cl:defconstant PARENB 256 "NIL")
(cl:export 'PARENB)
(cl:defconstant PARODD 512 "NIL")
(cl:export 'PARODD)
(cl:defconstant HUPCL 1024 "NIL")
(cl:export 'HUPCL)
(cl:defconstant CLOCAL 2048 "NIL")
(cl:export 'CLOCAL)
(cl:defconstant ECHO 8 "NIL")
(cl:export 'ECHO)
(cl:defconstant ECHOE 16 "NIL")
(cl:export 'ECHOE)
(cl:defconstant ECHOK 32 "NIL")
(cl:export 'ECHOK)
(cl:defconstant ECHONL 64 "NIL")
(cl:export 'ECHONL)
(cl:defconstant ICANON 2 "NIL")
(cl:export 'ICANON)
(cl:defconstant IEXTEN 32768 "NIL")
(cl:export 'IEXTEN)
(cl:defconstant ISIG 1 "NIL")
(cl:export 'ISIG)
(cl:defconstant NOFLSH 128 "NIL")
(cl:export 'NOFLSH)
(cl:defconstant TOSTOP 256 "NIL")
(cl:export 'TOSTOP)
(cl:defconstant TCSANOW 0 "NIL")
(cl:export 'TCSANOW)
(cl:defconstant TCSADRAIN 1 "NIL")
(cl:export 'TCSADRAIN)
(cl:defconstant TCSAFLUSH 2 "NIL")
(cl:export 'TCSAFLUSH)
(cl:defconstant TCIFLUSH 0 "NIL")
(cl:export 'TCIFLUSH)
(cl:defconstant TCIOFLUSH 2 "NIL")
(cl:export 'TCIOFLUSH)
(cl:defconstant TCOFLUSH 1 "NIL")
(cl:export 'TCOFLUSH)
(cl:defconstant TCIOFF 2 "NIL")
(cl:export 'TCIOFF)
(cl:defconstant TCION 3 "NIL")
(cl:export 'TCION)
(cl:defconstant TCOOFF 0 "NIL")
(cl:export 'TCOOFF)
(cl:defconstant TCOON 1 "NIL")
(cl:export 'TCOON)
(cl:defconstant LOG-USER 8 "Default openlog() faclity.")
(cl:export 'LOG-USER)
(cl:defconstant LOG-LOCAL0 128 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL0)
(cl:defconstant LOG-LOCAL1 136 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL1)
(cl:defconstant LOG-LOCAL2 144 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL2)
(cl:defconstant LOG-LOCAL3 152 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL3)
(cl:defconstant LOG-LOCAL4 160 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL4)
(cl:defconstant LOG-LOCAL5 168 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL5)
(cl:defconstant LOG-LOCAL6 176 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL6)
(cl:defconstant LOG-LOCAL7 184 "Locally-defined openlog() facility")
(cl:export 'LOG-LOCAL7)
(cl:defconstant LOG-AUTHPRIV 80 "openlog() facility for authorization messages")
(cl:export 'LOG-AUTHPRIV)
(cl:defconstant LOG-CRON 72 "openlog() facility for cron and at daemons")
(cl:export 'LOG-CRON)
(cl:defconstant LOG-DAEMON 24 "openlog() facility for arbitrary daemons")
(cl:export 'LOG-DAEMON)
(cl:defconstant LOG-FTP 88 "openlog() facility for FTP daemons")
(cl:export 'LOG-FTP)
(cl:defconstant LOG-KERN 0 "openlog() facility for kernel messages")
(cl:export 'LOG-KERN)
(cl:defconstant LOG-LPR 48 "openlog() facility for the printer subsystem")
(cl:export 'LOG-LPR)
(cl:defconstant LOG-MAIL 16 "openlog() facility for the mail subsystem")
(cl:export 'LOG-MAIL)
(cl:defconstant LOG-NEWS 56 "openlog() facility for the usenet subsystem")
(cl:export 'LOG-NEWS)
(cl:defconstant LOG-SYSLOG 40 "openlog() facility for the syslog subsystem")
(cl:export 'LOG-SYSLOG)
(cl:defconstant LOG-UUCP 64 "openlog() facility for the UUCP subsystem")
(cl:export 'LOG-UUCP)
(cl:defconstant LOG-PID 1 "If supplied to openlog(), log the process ID with each message")
(cl:export 'LOG-PID)
(cl:defconstant LOG-CONS 2 "If supplied to openlog(), log to the system console as well as logfiles")
(cl:export 'LOG-CONS)
(cl:defconstant LOG-NDELAY 8 "If supplied to openlog(), immediately open the syslog connection.")
(cl:export 'LOG-NDELAY)
(cl:defconstant LOG-ODELAY 4 "If supplied to openlog(), delay opening the syslog connection to the first syslog() call.")
(cl:export 'LOG-ODELAY)
(cl:defconstant LOG-NOWAIT 16 "If supplied to openlog(), do not wait for child processes created by calls to syslog().")
(cl:export 'LOG-NOWAIT)
(cl:defconstant LOG-PERROR 32 "If supplied to openlog(), write log messages to the process's standard error descriptor in addition to the logging facility.")
(cl:export 'LOG-PERROR)
(cl:defconstant LOG-EMERG 0 "Log severity level denoting a panic.")
(cl:export 'LOG-EMERG)
(cl:defconstant LOG-ALERT 1 "Log severity level denoting a condition that should be corrected immediately.")
(cl:export 'LOG-ALERT)
(cl:defconstant LOG-CRIT 2 "Log severity level denoting critical conditions.")
(cl:export 'LOG-CRIT)
(cl:defconstant LOG-ERR 3 "Log severity level denoting an error.")
(cl:export 'LOG-ERR)
(cl:defconstant LOG-WARNING 4 "Log severity level denoting a warning.")
(cl:export 'LOG-WARNING)
(cl:defconstant LOG-NOTICE 5 "Log severity level denoting non-errors that may require special handling.")
(cl:export 'LOG-NOTICE)
(cl:defconstant LOG-INFO 6 "Log severity level denoting informational messages.")
(cl:export 'LOG-INFO)
(cl:defconstant LOG-DEBUG 7 "Log severity level denoting debugging information .")
(cl:export 'LOG-DEBUG)