search for: vsscanf

Displaying 20 results from an estimated 61 matches for "vsscanf".

Did you mean: sscanf
2011 Nov 30
1
[PATCH] vsscanf: remove unused variables
Removed unused local variable from vsscanf(). Signed-off-by: Greg Thelen <gthelen at google.com> --- usr/klibc/vsscanf.c | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/usr/klibc/vsscanf.c b/usr/klibc/vsscanf.c index 51e50f7..b8f068c 100644 --- a/usr/klibc/vsscanf.c +++ b/usr/klibc/vsscanf.c @@ -88,7 +...
2011 Apr 04
1
[PATCH] com32: Do not use centralized bitops header in vsscanf
From: Matt Fleming <matt.fleming at linux.intel.com> Partially revert "com32: add a centralized bitops header" This reverts part of commit db74cf6c4182f40ecf7fad1f04799d09d82f896d. The usage of the centralized bitops in com32/lib/vsscanf.c is not correct because the bitmap that we're accessing is too large for the 'bt', 'bts' and 'btc' instructions to operate on, i.e. the instructions cannot address all the bits of the bitmap as the size of 'matchmap' is 32 bytes. This commit doesn't entirel...
2011 Dec 04
0
[GIT PULL] klibc minor fixes
....debian.org/users/maks/klibc.git scripts/basic/fixdep.c | 27 +++++++++++++-------------- usr/include/limits.h | 2 ++ usr/include/sys/file.h | 9 +++++++++ usr/include/sys/types.h | 4 ++++ usr/include/unistd.h | 1 - usr/kinit/ipconfig/main.c | 2 +- usr/klibc/vsscanf.c | 7 ------- 7 files changed, 29 insertions(+), 23 deletions(-) create mode 100644 usr/include/sys/file.h Greg Thelen (2): [klibc] ipconfig: check poll() return value [klibc] vsscanf: remove unused variables Maciej ?enczykowski (1): [klibc] include: [sys/types.h] -&g...
2012 Jan 21
1
[PATCH] include/checkpatch: Prefer __scanf to __attribute__((format(scanf, ...)
...+++ b/include/linux/kernel.h @@ -315,10 +315,10 @@ extern __printf(2, 3) char *kasprintf(gfp_t gfp, const char *fmt, ...); extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); -extern int sscanf(const char *, const char *, ...) - __attribute__ ((format (scanf, 2, 3))); -extern int vsscanf(const char *, const char *, va_list) - __attribute__ ((format (scanf, 2, 0))); +extern __scanf(2, 3) +int sscanf(const char *, const char *, ...); +extern __scanf(2, 0) +int vsscanf(const char *, const char *, va_list); extern int get_option(char **str, int *pint); extern char *get_options(cons...
2012 Jan 21
1
[PATCH] include/checkpatch: Prefer __scanf to __attribute__((format(scanf, ...)
...+++ b/include/linux/kernel.h @@ -315,10 +315,10 @@ extern __printf(2, 3) char *kasprintf(gfp_t gfp, const char *fmt, ...); extern char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); -extern int sscanf(const char *, const char *, ...) - __attribute__ ((format (scanf, 2, 3))); -extern int vsscanf(const char *, const char *, va_list) - __attribute__ ((format (scanf, 2, 0))); +extern __scanf(2, 3) +int sscanf(const char *, const char *, ...); +extern __scanf(2, 0) +int vsscanf(const char *, const char *, va_list); extern int get_option(char **str, int *pint); extern char *get_options(cons...
2009 Dec 10
1
[PATCH] [RFC] lib: add a hex dump lib function
...lib/Makefile index c5b1981..50fd07f 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -25,7 +25,7 @@ LIBOBJS = \ strtoimax.o strtok.o strtol.o strtoll.o strtoul.o strtoull.o \ strtoumax.o vfprintf.o vprintf.o vsnprintf.o vsprintf.o \ asprintf.o vasprintf.o strlcpy.o strlcat.o \ - vsscanf.o zalloc.o \ + vsscanf.o zalloc.o hexdump.o \ \ opendir.o readdir.o closedir.o getcwd.o chdir.o fdopendir.o \ \ diff --git a/com32/lib/hexdump.c b/com32/lib/hexdump.c new file mode 100644 index 0000000..04edbcf --- /dev/null +++ b/com32/lib/hexdump.c @@ -0,0 +1,42 @@ +/* + * The hex...
2005 May 12
0
Using string from stdlib in winemaker
.../c++/3.3/string:47, from wndclass.cxx:2: /usr/include/c++/3.3/cstdio:167: error: `snprintf' not declared /usr/include/c++/3.3/cstdio:168: error: `vfscanf' not declared /usr/include/c++/3.3/cstdio:169: error: `vscanf' not declared /usr/include/c++/3.3/cstdio:171: error: `vsscanf' not declared /usr/include/c++/3.3/cstdio:177: error: `snprintf' not declared /usr/include/c++/3.3/cstdio:178: error: `vfscanf' not declared /usr/include/c++/3.3/cstdio:179: error: `vscanf' not declared /usr/include/c++/3.3/cstdio:181: error: `vsscanf' not declared In file inclu...
2018 Jan 02
0
Wine release 2.0.4
...en adding a video track ('IAMTimelineGroup', '{9eed4f00-b8a6-11d2-8023-00c0df10d434}' not implemented, 'qedit.dll') 43290 MyLifeOrganized crashes when mousing over tabs 43293 strange behavior- Eudora scrambles email addresses 43324 Beamng.drive requires msvcr120.dll.vsscanf 43453 Magic Online (Magic The Gathering: Online) Crashes due to race condition in secur32 43475 XM6 TypeG crashes on startup. 43503 FUJITSU Software ATLAS: unimplemented function msvcr80.dll._ismbcl0 called in 32-bit code 43527 Magic Online (Magic The Gathering: Online) Crashes due to...
2010 Jan 07
1
[PATCH 1/2] Fix assert when NDEBUG defined
Don't use the parameter x in assert(x) if NDEBUG is defined to avoid any problems where (x) may contain symbols that are only defined if !NDEBUG Signed-off-by: Jon Ringle <jon at ringle.org> --- usr/include/assert.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/usr/include/assert.h b/usr/include/assert.h index d89e082..e59ed94 100644 ---
2008 Aug 16
1
Minimal COM32 Root Module
...strerror.o strlen.o \ strnlen.o \ strncasecmp.o strncat.o strncmp.o strndup.o \ stpcpy.o stpncpy.o \ strntoimax.o strntoumax.o strrchr.o strstr.o \ strtoimax.o strtol.o strtoll.o strtoul.o strtoull.o \ strtoumax.o vprintf.o vsprintf.o \ asprintf.o vasprintf.o strlcat.o \ vsscanf.o zalloc.o \ \ sys/x86_init_fpu.o math/pow.o math/strtod.o Thank you! Stefan Bucur
2008 Dec 31
1
wineg++ problem with the standard library
...t been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/cstdio:171: error: ::vfscanf has not been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/cstdio:172: error: ::vscanf has not been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/cstdio:174: error: ::vsscanf has not been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/cstdio:180: error: __gnu_cxx::snprintf has not been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/cstdio:181: error: __gnu_cxx::vfscanf has not been declared /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g...
2017 Sep 29
0
Wine release 2.18
...mentation) 42154 Multiple games crash with built-in xinput (Deus Ex: Human Revolution, Thief (2014), Tomb Raider (2013), Bejeweled 3) 42715 Cxbx (Xbox emulator) doesn`t start (wine: Invalid address) 42983 Abwrite crashes with exception 0x40000015 43324 Beamng.drive requires msvcr120.dll.vsscanf 43326 Uplay (July 2017) needs dwmapi.DwmSetIconicLivePreviewBitmap 43453 Magic Online (Magic The Gathering: Online) Crashes due to race condition in secur32 43487 Magic Online (Magic The Gathering: Online) Crashes in dwrite 43549 Wickr 4.0.5: Crashes upon run 43699 Blackscreen in v...
2007 Aug 15
0
[git patch] fstype support + minor stuff
...gt; diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index ad72116..512f841 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -5,57 +5,64 @@ # Tell that we are building klibc export klibc-build := y -klib-y := vsnprintf.o snprintf.o vsprintf.o sprintf.o \ - asprintf.o vasprintf.o \ - vsscanf.o sscanf.o ctypes.o \ - strntoumax.o strntoimax.o \ - atoi.o atol.o atoll.o \ - strtol.o strtoll.o strtoul.o strtoull.o \ - strtoimax.o strtoumax.o \ - globals.o exit.o atexit.o onexit.o \ - execl.o execle.o execv.o execvpe.o execvp.o execlp.o execlpe.o \ - fork.o vfork.o wait.o wait3...
2009 Feb 11
1
[PATCH 1/1] COM32 API: Add functions for directory use
...Standard file descriptor numbers. */ #define STDIN_FILENO 0 #define STDOUT_FILENO 1 diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 91405a0..0cc4061 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -21,6 +21,8 @@ LIBOBJS = \ asprintf.o vasprintf.o strlcpy.o strlcat.o \ vsscanf.o zalloc.o \ \ + opendir.o readdir.o closedir.o getcwd.o chdir.o fdopendir.o \ + \ libgcc/__ashldi3.o libgcc/__udivdi3.o \ libgcc/__negdi2.o libgcc/__ashrdi3.o libgcc/__lshrdi3.o \ libgcc/__muldi3.o libgcc/__udivmoddi4.o libgcc/__umoddi3.o \ diff --git a/com32/lib/chdir.c b/com32/li...
2018 Jan 05
0
Wine release 3.0-rc5
...right info for 2018. ntdll: Don't set floating point registers from initial context. reg/tests: Get rid of version check. regedit/tests: Get rid of version check. wineandroid: Add permission for accessing external storage. ntdll: Fix source/destination confusion in vsscanf. Alistair Leslie-Hughes (3): oledb32: Coerce Variant to VT_DATE when converting data. oledb32: Silence interfaces for IDataSourceLocator QI. oledb32/tests: Add DataConvert DBTYPE_BSTR->DBTYPE_DBTIMESTAMP test. Anders Jonsson (1): po: Update Swedish translation. Andrew...
2008 Dec 04
0
[PATCH 1/1] COM32: Add directory functions
...Standard file descriptor numbers. */ #define STDIN_FILENO 0 #define STDOUT_FILENO 1 diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 0279904..793ef33 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -21,6 +21,8 @@ LIBOBJS = \ asprintf.o vasprintf.o strlcpy.o strlcat.o \ vsscanf.o zalloc.o \ \ + opendir.o readdir.o closedir.o getcwd.o chdir.o fdopendir.o \ + \ libgcc/__ashldi3.o libgcc/__udivdi3.o \ libgcc/__negdi2.o libgcc/__ashrdi3.o libgcc/__lshrdi3.o \ libgcc/__muldi3.o libgcc/__udivmoddi4.o libgcc/__umoddi3.o \ diff --git a/com32/lib/chdir.c b/com32/li...
2012 May 31
1
klibc 2.0 release
...th (3): [klibc] kinit: Add ability to mount filesystems via /etc/fstab or cmdline [klibc] kinit: Create block device for mount commands if needed. [klibc] kinit: Parse mount command options properly. Greg Thelen (3): [klibc] ipconfig: check poll() return value [klibc] vsscanf: remove unused variables [klibc] nfsmount: clean up dummypmap compiler warning H. Peter Anvin (57): [klibc] Initial implementation of buffered stdio [klibc] Correct fdopen() [klibc] Add ungetc() [klibc] Saner definition for BUFSIZ [klibc] Whitespace fix Me...
2006 Apr 11
6
klibc kbuild status
Hi hpa & others. Following is a list of issues that I hope to be addressed soon so we are in even better shape for -mm inclusion. 1) rebuild initramfs when content changes. > It is a simple matter of copying in usr/Makefile from the latest > -linus kernel and replace the 10 first lines with the content from > klibc Kbuild file. 2) havesyscalls.h is not deleted after make
2009 Dec 31
0
configure R-2.10.1 => "Error: MPlayer will not compile without (PR#14175)
....h) Checking for sys/dvdio.h ... no Checking for sys/cdio.h ... no Checking for linux/cdrom.h ... yes Checking for dvd.h ... no Checking for termcap ... yes (using -lncurses) Checking for termios ... yes (using sys/termios.h) Checking for shm ... yes Checking for strsep() ... yes Checking for vsscanf() ... yes Checking for swab() ... yes Checking for POSIX select() ... yes Checking for audio select() ... yes Checking for gettimeofday() ... yes Checking for glob() ... yes Checking for setenv() ... yes Checking for sys/sysinfo.h ... yes Checking for Apple IR ... yes Checking for pkg-conf...
2018 Mar 18
0
Wine release 2.0.5
...ct allocation size for the image mask. explorer: Fix parsing command line that contains spaces. libport: Add a replacement implementation for strnlen. kernel32: Properly detect ELF binaries that are position independent executables. ntdll: Fix source/destination confusion in vsscanf. ddraw: Validate the surface descriptor size in GetDisplayMode. configure: Check the positive form of the warning options. Alistair Leslie-Hughes (4): oleaut32: Remove dead code. oleaut32: Use VariantChangeTypeEx to convert to VT_BOOL. oleaut32/tests: Add more VarCat...