Displaying 7 results from an estimated 7 matches for "fpos_t".
2015 Dec 18
1
Assistance much appreciated
...mp.c"
@@ -171,18 +171,11 @@
typedef long int ptrdiff_t;
# 119
"/opt/lib/gcc/powerpc-ibm-aix5.3.0.0/4.7.4/include-fixed/sys/types.h" 3 4
typedef unsigned int wctype_t;
+ # 128
"/opt/lib/gcc/powerpc-ibm-aix5.3.0.0/4.7.4/include-fixed/sys/types.h" 3 4
+ typedef long fpos_t;
-
-
-
- typedef long long fpos_t;
-
-
-
-
-
typedef long long fpos64_t;
# 145
"/opt/lib/gcc/powerpc-ibm-aix5.3.0.0/4.7.4/include-fixed/sys/types.h" 3 4
typedef int time_t;
@@ -258,9 +251,9 @@
- typedef long long off_t;
+ typedef long off_t;
@@ -2785,8 +2778,8 @@
e...
2015 Dec 17
3
Assistance much appreciated
On 2015-12-17 19:30, peter dalgaard wrote:
> Presumably the file in question is one of
>
> Peter-Dalgaards-MacBook-Air:BUILD pd$ grep -r "^Package: tools" *
> library/tools/DESCRIPTION:Package: tools
> src/library/tools/DESCRIPTION:Package: tools
>
> so the first thing I'd do is to have a good look at those files and see if they got somehow corrupted.
>
>
2001 Jul 18
2
winelib and msvcrt/stdio.h
...ine/msvcrt/io.h:11,
/usr/include/wine/msvcrt/stdio.h:66: syntax error before `{'
/usr/include/wine/msvcrt/stdio.h:75: parse error before `}'
/usr/include/wine/msvcrt/stdio.h:75: aggregate `MSVCRT FILE' has
incomplete type and cannot be initialized
/usr/include/wine/msvcrt/stdio.h:77: `fpos_t' was not declared in this
scope
/usr/include/wine/msvcrt/stdio.h:77: typedef declaration includes an
initializer
/usr/include/wine/msvcrt/stdio.h:77: typedef `MSVCRT' is initialized
/usr/include/wine/msvcrt/stdio.h:77: conflicting types for `typedef
long int MSVCRT'
/usr/include/wine...
2004 Aug 26
6
chan_capi module
...1: error: storage class specified for parameter
`_IO_free_backup_area'In file included from
/usr/include/asterisk/monitor.h:4, from /usr/include/asterisk/channel.h:34,
from chan_capi.c:16:
/usr/include/stdio.h:88: error: storage class specified for parameter
`_G_fpos_t'/usr/include/stdio.h:88: error: syntax error before "fpos_t"
In file included from /usr/include/asterisk/monitor.h:4,
from /usr/include/asterisk/channel.h:34,
from chan_capi.c:16:
/usr/include/stdio.h:142: error: storage class specified for parameter...
2019 Mar 27
26
Call for testing: OpenSSH 8.0
Hi,
OpenSSH 8.0p1 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible.
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD:
http://www.openbsd.org/anoncvs.html
Portable OpenSSH is also available via git using the
instructions at
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...klen_t;
typedef struct _IO_FILE FILE;
typedef struct _IO_FILE __FILE;
typedef int wchar_t;
typedef unsigned int wint_t;
typedef struct
{
int __count;
union
{
wint_t __wch;
char __wchb[4];
} __value;
} __mbstate_t;
typedef struct
{
__off_t __pos;
__mbstate_t __state;
} _G_fpos_t;
typedef struct
{
__off64_t __pos;
__mbstate_t __state;
} _G_fpos64_t;
enum
{
__GCONV_OK = 0,
__GCONV_NOCONV,
__GCONV_NODB,
__GCONV_NOMEM,
__GCONV_EMPTY_INPUT,
__GCONV_FULL_OUTPUT,
__GCONV_ILLEGAL_INPUT,
__GCONV_INCOMPLETE_INPUT,
__GCONV_ILLEGAL_DESCRIPTOR,
__GCONV_INTERNAL_...