mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
19 lines
233 B
C
19 lines
233 B
C
#ifndef TORCH_GENERAL_INC
|
|
#define TORCH_GENERAL_INC
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "luaT.h"
|
|
#include "TH.h"
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define snprintf _snprintf
|
|
#define popen _popen
|
|
#define pclose _pclose
|
|
|
|
#endif
|
|
|
|
#endif
|