gems.ffi-1.9.7.libtest.LastErrorTest.c Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
/*
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
*
* For licensing, see LICENSE.SPECS
*/
#if defined(_WIN32) || defined(__WIN32__)
# include
#else
# include
#endif
int setLastError(int error) {
#if defined(_WIN32) || defined(__WIN32__)
SetLastError(error);
#else
errno = error;
#endif
return -1;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy