open_wmemstream.c (692a3987f2e9b4a3806dfc59a77b0ae3000ef5dd) | open_wmemstream.c (c6e615506b60b2ddd504c843c9ccebc266849a39) |
---|---|
1/*- 2 * Copyright (c) 2013 Hudson River Trading LLC 3 * Written by: John H. Baldwin <jhb@FreeBSD.org> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 17 unchanged lines hidden (view full) --- 26 */ 27 28#include <sys/cdefs.h> 29__FBSDID("$FreeBSD$"); 30 31#include "namespace.h" 32#include <assert.h> 33#include <errno.h> | 1/*- 2 * Copyright (c) 2013 Hudson River Trading LLC 3 * Written by: John H. Baldwin <jhb@FreeBSD.org> 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 17 unchanged lines hidden (view full) --- 26 */ 27 28#include <sys/cdefs.h> 29__FBSDID("$FreeBSD$"); 30 31#include "namespace.h" 32#include <assert.h> 33#include <errno.h> |
34#include <limits.h> |
|
34#ifdef DEBUG | 35#ifdef DEBUG |
35#include <inttypes.h> | 36#include <stdint.h> |
36#endif | 37#endif |
37#include <limits.h> | |
38#include <stdio.h> 39#include <stdlib.h> 40#include <string.h> 41#include <wchar.h> 42#include "un-namespace.h" 43 44/* XXX: There is no FPOS_MAX. This assumes fpos_t is an off_t. */ 45#define FPOS_MAX OFF_MAX --- 229 unchanged lines hidden --- | 38#include <stdio.h> 39#include <stdlib.h> 40#include <string.h> 41#include <wchar.h> 42#include "un-namespace.h" 43 44/* XXX: There is no FPOS_MAX. This assumes fpos_t is an off_t. */ 45#define FPOS_MAX OFF_MAX --- 229 unchanged lines hidden --- |