ldconfig.c (50a40d091170d96a84688e5b8420f584e27b99a1) | ldconfig.c (83511ce5c473406e0661247e40971be28e218684) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1993,1995 Paul Kranenburg 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 88 unchanged lines hidden (view full) --- 97 argc--; 98 argv++; 99 } else { 100 break; 101 } 102 } 103 104 if (is_soft) | 1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1993,1995 Paul Kranenburg 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 88 unchanged lines hidden (view full) --- 97 argc--; 98 argv++; 99 } else { 100 break; 101 } 102 } 103 104 if (is_soft) |
105 hints_file = _PATH_ELFSOFT_HINTS; /* Never will have a.out softfloat */ | 105 hints_file = _PATH_ELFSOFT_HINTS; |
106 else if (is_32) 107 hints_file = _PATH_ELF32_HINTS; 108 else 109 hints_file = _PATH_ELF_HINTS; 110 if (argc == 1) 111 rescan = 1; 112 else while((c = getopt(argc, argv, "Rf:imrsv")) != -1) { 113 switch (c) { --- 42 unchanged lines hidden --- | 106 else if (is_32) 107 hints_file = _PATH_ELF32_HINTS; 108 else 109 hints_file = _PATH_ELF_HINTS; 110 if (argc == 1) 111 rescan = 1; 112 else while((c = getopt(argc, argv, "Rf:imrsv")) != -1) { 113 switch (c) { --- 42 unchanged lines hidden --- |