findfp.c (87275e436a0fb31fea2757532860a3ec993d2cd6) | findfp.c (2b46c64c9c1bf1cb194e0f2b7c478f61a0e10cd9) |
---|---|
1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 72 unchanged lines hidden (view full) --- 81 std(__SWR|__SNBF, STDERR_FILENO) 82}; 83 84/* 85 * The following kludge is done to ensure enough binary compatibility 86 * with future versions of libc. Or rather it allows us to work with 87 * libraries that have been built with a newer libc that defines these 88 * symbols and expects libc to provide them. We only have need to support | 1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 72 unchanged lines hidden (view full) --- 81 std(__SWR|__SNBF, STDERR_FILENO) 82}; 83 84/* 85 * The following kludge is done to ensure enough binary compatibility 86 * with future versions of libc. Or rather it allows us to work with 87 * libraries that have been built with a newer libc that defines these 88 * symbols and expects libc to provide them. We only have need to support |
89 * i386 and alpha because they are the only "old" systems we have deployed. | 89 * i386 because it is the only "old" system we have deployed. |
90 */ 91FILE *__stdinp = &__sF[0]; 92FILE *__stdoutp = &__sF[1]; 93FILE *__stderrp = &__sF[2]; 94 95struct glue __sglue = { &uglue, 3, __sF }; 96static struct glue *lastglue = &uglue; 97 --- 152 unchanged lines hidden --- | 90 */ 91FILE *__stdinp = &__sF[0]; 92FILE *__stdoutp = &__sF[1]; 93FILE *__stderrp = &__sF[2]; 94 95struct glue __sglue = { &uglue, 3, __sF }; 96static struct glue *lastglue = &uglue; 97 --- 152 unchanged lines hidden --- |