All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.ffi-1.9.7.libtest.LastErrorTest.c Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * 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