| OLD | NEW |
| 1 /*- | 1 /*- |
| 2 * Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org> | 2 * Copyright (c) 2008 Ed Schouten <ed@FreeBSD.org> |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 int _EXFUN(posix_spawnattr_setschedpolicy, (posix_spawnattr_t *, int)); | 120 int _EXFUN(posix_spawnattr_setschedpolicy, (posix_spawnattr_t *, int)); |
| 121 int _EXFUN(posix_spawnattr_setsigdefault, | 121 int _EXFUN(posix_spawnattr_setsigdefault, |
| 122 (posix_spawnattr_t * __restrict, const sigset_t * __restrict) | 122 (posix_spawnattr_t * __restrict, const sigset_t * __restrict) |
| 123 ); | 123 ); |
| 124 int _EXFUN(posix_spawnattr_setsigmask, | 124 int _EXFUN(posix_spawnattr_setsigmask, |
| 125 (posix_spawnattr_t * __restrict, const sigset_t * __restrict) | 125 (posix_spawnattr_t * __restrict, const sigset_t * __restrict) |
| 126 ); | 126 ); |
| 127 _END_STD_C | 127 _END_STD_C |
| 128 | 128 |
| 129 #endif /* !_SPAWN_H_ */ | 129 #endif /* !_SPAWN_H_ */ |
| OLD | NEW |