Skip to content

Commit 2fe4e5f

Browse files
8303169: Remove Windows specific workaround from libdt
Reviewed-by: cjplummer, sspitsyn, clanger
1 parent f2b03f9 commit 2fe4e5f

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/jdk.jdi/share/native/libdt_shmem/shmemBase.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,15 +26,12 @@
2626
#include <string.h>
2727
#include <errno.h>
2828
#include <stdlib.h>
29+
#include <inttypes.h>
2930

3031
#include "sysShmem.h"
3132
#include "shmemBase.h"
3233
#include "jdwpTransport.h" /* for Packet, TransportCallback */
3334

34-
#if defined(_WIN32)
35-
#define PRId64 "I64d"
36-
#endif
37-
3835
#define MIN(x,y) ((x)<(y)?(x):(y))
3936

4037
/*

0 commit comments

Comments
 (0)