mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
13 lines
250 B
C
13 lines
250 B
C
|
/*
|
||
|
* Implementation of platform_get_x_display for Windows, common to all
|
||
|
* tools.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
char *platform_get_x_display(void)
|
||
|
{
|
||
|
/* We may as well check for DISPLAY in case it's useful. */
|
||
|
return dupstr(getenv("DISPLAY"));
|
||
|
}
|