thr_printf.c (bb535300dd871731b2542594a917bc2892479ca0) | thr_printf.c (7d9d7ca2ed3e3d630e63482c41f2d26194129c2c) |
---|---|
1/*- 2 * Copyright (c) 2002 Jonathan Mini <mini@freebsd.org> 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 --- 20 unchanged lines hidden (view full) --- 29#include <sys/cdefs.h> 30__FBSDID("$FreeBSD$"); 31 32#include <sys/types.h> 33#include <sys/fcntl.h> 34#include <sys/uio.h> 35#include <errno.h> 36#include <stdarg.h> | 1/*- 2 * Copyright (c) 2002 Jonathan Mini <mini@freebsd.org> 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 --- 20 unchanged lines hidden (view full) --- 29#include <sys/cdefs.h> 30__FBSDID("$FreeBSD$"); 31 32#include <sys/types.h> 33#include <sys/fcntl.h> 34#include <sys/uio.h> 35#include <errno.h> 36#include <stdarg.h> |
37#include <string.h> |
|
37#include <unistd.h> 38#include <pthread.h> 39 40#include "thr_private.h" 41 42static void pchar(int fd, char c); 43static void pstr(int fd, const char *s); 44 --- 80 unchanged lines hidden --- | 38#include <unistd.h> 39#include <pthread.h> 40 41#include "thr_private.h" 42 43static void pchar(int fd, char c); 44static void pstr(int fd, const char *s); 45 --- 80 unchanged lines hidden --- |