summaryrefslogtreecommitdiff
path: root/Build/source/texk/texlive/w64_mingw_wrapper/runscript_exe.c
blob: 29d04a93a43f02777d941608301de24437717c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/************************************************************************

  This file is a part of the wrapper program for launching scripts
  and programs in TeX Live on Windows. See readme.txt for more details.
  
  This file was originally written in 2009 by Tomasz M. Trzeciak and
  was placed in the Public Domain.
 
************************************************************************/

#include <windows.h>

__declspec(dllimport) int dllrunscript( int argc, char *argv[] );

int main( int argc, char *argv[] ) { return dllrunscript( argc, argv ); }