ldconfig.c (1a0fda2b547365c9453523592a445dfe21266d4b) | ldconfig.c (2493aadadee50ababced80d22d8654eaaeaa7909) |
---|---|
1/* 2 * Copyright (c) 1993,1995 Paul Kranenburg 3 * 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 --- 83 unchanged lines hidden (view full) --- 92static int buildhints(void); 93static int dodir(char *, int); 94int dofile(char *, int); 95static void enter(char *, char *, char *, int *, int); 96static void listhints(void); 97static int readhints(void); 98static void usage(void); 99 | 1/* 2 * Copyright (c) 1993,1995 Paul Kranenburg 3 * 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 --- 83 unchanged lines hidden (view full) --- 92static int buildhints(void); 93static int dodir(char *, int); 94int dofile(char *, int); 95static void enter(char *, char *, char *, int *, int); 96static void listhints(void); 97static int readhints(void); 98static void usage(void); 99 |
100/* 101 * Note on aout/a.out support. 102 * To properly support shared libraries for compat2x, which are a.out, we need 103 * to support a.out here. As of 2013, bug reports are still coming in for this 104 * feature (on amd64 no less), so we know it is still in use. 105 */ 106 |
|
100int 101main(int argc, char **argv) 102{ 103 int i, c; 104 int rval = 0; 105 int is_aout = 0; 106 int is_32 = 0; 107 --- 526 unchanged lines hidden --- | 107int 108main(int argc, char **argv) 109{ 110 int i, c; 111 int rval = 0; 112 int is_aout = 0; 113 int is_32 = 0; 114 --- 526 unchanged lines hidden --- |