localedef.c (c6879c6c14eedbd060ba588a3129a6c60ebbe783) | localedef.c (d836a9dbe3407f8cc36f1e37be45389784f8d995) |
---|---|
1/*- 2 * Copyright 2018 Nexenta Systems, Inc. 3 * Copyright 2015 John Marino <draco@marino.st> 4 * 5 * This source code is derived from the illumos localedef command, and 6 * provided under BSD-style license terms by Nexenta Systems, Inc. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 259 unchanged lines hidden (view full) --- 268 init_charmap(); 269 init_collate(); 270 init_ctype(); 271 init_messages(); 272 init_monetary(); 273 init_numeric(); 274 init_time(); 275 | 1/*- 2 * Copyright 2018 Nexenta Systems, Inc. 3 * Copyright 2015 John Marino <draco@marino.st> 4 * 5 * This source code is derived from the illumos localedef command, and 6 * provided under BSD-style license terms by Nexenta Systems, Inc. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 259 unchanged lines hidden (view full) --- 268 init_charmap(); 269 init_collate(); 270 init_ctype(); 271 init_messages(); 272 init_monetary(); 273 init_numeric(); 274 init_time(); 275 |
276#if YYDEBUG |
|
276 yydebug = 0; | 277 yydebug = 0; |
278#endif |
|
277 278 (void) setlocale(LC_ALL, ""); 279 280 while ((c = getopt(argc, argv, "blw:i:cf:u:vUD")) != -1) { 281 switch (c) { 282 case 'D': 283 bsd = 1; 284 break; --- 84 unchanged lines hidden --- | 279 280 (void) setlocale(LC_ALL, ""); 281 282 while ((c = getopt(argc, argv, "blw:i:cf:u:vUD")) != -1) { 283 switch (c) { 284 case 'D': 285 bsd = 1; 286 break; --- 84 unchanged lines hidden --- |