init.c (b19ab1ce699c9fe531bd599a552136b47e52c238) | init.c (410f13a58d44e0f19306df28a99227015a2a688a) |
---|---|
1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 31 unchanged lines hidden (view full) --- 40#endif /* not lint */ 41 42/* 43 * Getty table initializations. 44 * 45 * Melbourne getty. 46 */ 47#include <termios.h> | 1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 31 unchanged lines hidden (view full) --- 40#endif /* not lint */ 41 42/* 43 * Getty table initializations. 44 * 45 * Melbourne getty. 46 */ 47#include <termios.h> |
48#include "extern.h" | |
49#include "gettytab.h" | 48#include "gettytab.h" |
49#include "extern.h" |
|
50#include "pathnames.h" 51 52static char loginmsg[] = "login: "; 53static char nullstr[] = ""; 54static char loginprg[] = _PATH_LOGIN; 55static char datefmt[] = "%+"; 56 57struct gettystrs gettystrs[] = { --- 97 unchanged lines hidden --- | 50#include "pathnames.h" 51 52static char loginmsg[] = "login: "; 53static char nullstr[] = ""; 54static char loginprg[] = _PATH_LOGIN; 55static char datefmt[] = "%+"; 56 57struct gettystrs gettystrs[] = { --- 97 unchanged lines hidden --- |