diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/abort.c | 2 | ||||
-rw-r--r-- | stdlib/cxa_atexit.c | 2 | ||||
-rw-r--r-- | stdlib/fmtmsg.c | 2 | ||||
-rw-r--r-- | stdlib/random.c | 2 | ||||
-rw-r--r-- | stdlib/setenv.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/abort.c b/stdlib/abort.c index ffde8145db..3b4bdba3f2 100644 --- a/stdlib/abort.c +++ b/stdlib/abort.c @@ -15,7 +15,7 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#include <bits/libc-lock.h> +#include <libc-lock.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> diff --git a/stdlib/cxa_atexit.c b/stdlib/cxa_atexit.c index 6e38c64fbe..c2937628b1 100644 --- a/stdlib/cxa_atexit.c +++ b/stdlib/cxa_atexit.c @@ -19,7 +19,7 @@ #include <stdlib.h> #include <stdint.h> -#include <bits/libc-lock.h> +#include <libc-lock.h> #include "exit.h" #include <atomic.h> #include <sysdep.h> diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c index b8133dca4d..a7abcbba8c 100644 --- a/stdlib/fmtmsg.c +++ b/stdlib/fmtmsg.c @@ -17,7 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <fmtmsg.h> -#include <bits/libc-lock.h> +#include <libc-lock.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> diff --git a/stdlib/random.c b/stdlib/random.c index 7c033df9aa..0c9e02e3b7 100644 --- a/stdlib/random.c +++ b/stdlib/random.c @@ -50,7 +50,7 @@ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/ -#include <bits/libc-lock.h> +#include <libc-lock.h> #include <limits.h> #include <stddef.h> #include <stdlib.h> diff --git a/stdlib/setenv.c b/stdlib/setenv.c index b9e0ba808d..dad7e71620 100644 --- a/stdlib/setenv.c +++ b/stdlib/setenv.c @@ -57,7 +57,7 @@ extern char **environ; #if _LIBC /* This lock protects against simultaneous modifications of `environ'. */ -# include <bits/libc-lock.h> +# include <libc-lock.h> __libc_lock_define_initialized (static, envlock) # define LOCK __libc_lock_lock (envlock) # define UNLOCK __libc_lock_unlock (envlock) |