Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
ce95eee9
Commit
ce95eee9
authored
19 years ago
by
Dan Fandrich
Browse files
Options
Downloads
Patches
Plain Diff
lcc isn't Windows-only, so check for it in conjunction with WIN32
parent
b15f3bb9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/curl/curl.h
+3
-3
3 additions, 3 deletions
include/curl/curl.h
with
3 additions
and
3 deletions
include/curl/curl.h
+
3
−
3
View file @
ce95eee9
...
...
@@ -67,7 +67,7 @@ extern "C" {
* format strings when outputting a variable of type curl_off_t.
*/
#if defined(_MSC_VER) || defined(__LCC__)
#if defined(_MSC_VER) ||
(
defined(__LCC__)
&& defined(WIN32))
/* MSVC */
#ifdef _WIN32_WCE
typedef
long
curl_off_t
;
...
...
@@ -76,7 +76,7 @@ extern "C" {
typedef
signed
__int64
curl_off_t
;
#define CURL_FORMAT_OFF_T "%I64d"
#endif
#else
/* _MSC_VER ||
__LCC__
*/
#else
/* _MSC_VER ||
(defined(__LCC__) && defined(WIN32))
*/
#if (defined(__GNUC__) && defined(WIN32)) || defined(__WATCOMC__)
/* gcc on windows or Watcom */
typedef
long
long
curl_off_t
;
...
...
@@ -108,7 +108,7 @@ extern "C" {
#define CURL_FORMAT_OFF_T "%ld"
#endif
#endif
/* GCC or Watcom on Windows */
#endif
/* _MSC_VER ||
__LCC__
*/
#endif
/* _MSC_VER ||
(defined(__LCC__) && defined(WIN32))
*/
#ifdef UNDEF_FILE_OFFSET_BITS
/* this was defined above for our checks, undefine it again */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment